-- MySQL dump 10.15  Distrib 10.0.31-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: jeremyfe_dev2
-- ------------------------------------------------------
-- Server version	10.0.31-MariaDB-cll-lve

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

--
-- Table structure for table `wp_xyud_commentmeta`
--

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

--
-- Dumping data for table `wp_xyud_commentmeta`
--

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

--
-- Table structure for table `wp_xyud_comments`
--

DROP TABLE IF EXISTS `wp_xyud_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_xyud_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_xyud_comments`
--

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

--
-- Table structure for table `wp_xyud_links`
--

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

--
-- Dumping data for table `wp_xyud_links`
--

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

--
-- Table structure for table `wp_xyud_options`
--

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

--
-- Dumping data for table `wp_xyud_options`
--

LOCK TABLES `wp_xyud_options` WRITE;
/*!40000 ALTER TABLE `wp_xyud_options` DISABLE KEYS */;
INSERT INTO `wp_xyud_options` VALUES (1,'siteurl','http://dev.jeremyfeldman.com/wordpress','yes'),(2,'home','http://dev.jeremyfeldman.com/wordpress','yes'),(3,'blogname','Jeremy Feldman, Creative Director, Portfolio','yes'),(4,'blogdescription','Jeremy Feldman, Creative Director, portfolio','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','feldman_jeremy@hotmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i A','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:157:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&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:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=42&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:42:\"divi-100-hamburger-menu/hamburger-menu.php\";i:1;s:49:\"elegant-themes-support/elegant-themes-support.php\";i:2;s:63:\"password-protected-categories/password-protected-categories.php\";i:3;s:47:\"post-tags-and-categories-for-pages/post-tag.php\";i:4;s:29:\"use-any-font/use-any-font.php\";i:5;s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";i:6;s:41:\"wordpress-php-info/wordpress-php-info.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:4:{i:0;s:80:\"/hermes/bosnaweb13a/b2058/glo.copyvet/wordpress/wp-content/themes/Divi/style.css\";i:2;s:109:\"/hermes/bosnaweb13a/b2058/glo.copyvet/wordpress/wp-content/plugins/divi-100-hamburger-menu/hamburger-menu.php\";i:3;s:76:\"/hermes/bosnaweb13a/b2058/glo.copyvet/wordpress/wp-content/plugins/hello.php\";i:4;s:0:\"\";}','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','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','0','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','1','yes'),(70,'close_comments_days_old','28','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','20','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:2:{i:1;a:0:{}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:37:\"optinmonster/optin-monster-wp-api.php\";s:32:\"optin_monster_api_uninstall_hook\";}','no'),(82,'timezone_string','America/New_York','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','42','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','25831','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_xyud_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'cron','a:9:{i:1505331633;a:1:{s:14:\"mm_cron_hourly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1505346526;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1505349216;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1505349632;a:1:{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;}}}i:1505349633;a:2:{s:18:\"mm_cron_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:13:\"mm_cron_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1505352524;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:1506213633;a:1:{s:15:\"mm_cron_monthly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}i:1506734235;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(96,'fresh_site','0','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'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'),(99,'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'),(100,'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'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:7:{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:9:\"sidebar-4\";N;s:9:\"sidebar-5\";N;s:13:\"array_version\";i:3;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1501550233;s:4:\"data\";a:4:{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:{}}}}','yes'),(110,'optinmonster_trial_id','1258907','yes'),(111,'mm_host','52867d42-e6ac-443a-afe1-55ae0a140b24','yes'),(112,'mm_brand','Globat','yes'),(113,'_mm_refresh_token','5930a4cc-bfb4-4b56-8cbd-219b4219cb1b','yes'),(114,'endurance_user','1','yes'),(115,'jetpack_activated','3','yes'),(116,'_transient_timeout_activated_jetpack','1496363622','no'),(117,'_transient_activated_jetpack','1','no'),(119,'jetpack_file_data','a:2:{s:3:\"5.2\";a:55:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}s:3:\"5.1\";a:55:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:34:\"Optimize your site for smartphones\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(120,'jetpack_available_modules','a:1:{s:3:\"5.2\";a:42:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(121,'jetpack_options','a:8:{s:7:\"version\";s:14:\"5.2:1501635922\";s:11:\"old_version\";s:14:\"5.1:1501542244\";s:2:\"id\";i:130042881;s:6:\"public\";i:0;s:9:\"jumpstart\";s:19:\"jumpstart_dismissed\";s:14:\"last_heartbeat\";i:1501635565;s:22:\"image_widget_migration\";b:1;s:24:\"custom_css_4.7_migration\";b:1;}','yes'),(125,'wpforms_version','1.3.6.1','yes'),(126,'wpforms_activated','a:1:{s:4:\"lite\";i:1496363617;}','yes'),(129,'jetpack_do_activate','1','yes'),(130,'mm_cache_settings','a:2:{s:4:\"page\";s:7:\"enabled\";s:7:\"browser\";s:7:\"enabled\";}','yes'),(131,'ebc_filetype_expirations','a:9:{s:9:\"image/jpg\";s:7:\"6 hours\";s:10:\"image/jpeg\";s:7:\"6 hours\";s:9:\"image/gif\";s:7:\"6 hours\";s:9:\"image/png\";s:7:\"6 hours\";s:8:\"text/css\";s:7:\"6 hours\";s:15:\"application/pdf\";s:6:\"1 week\";s:15:\"text/javascript\";s:7:\"6 hours\";s:9:\"text/html\";s:10:\"10 minutes\";s:7:\"default\";s:7:\"3 hours\";}','yes'),(132,'endurance_cache_level','2','yes'),(133,'mm_coming_soon','false','yes'),(134,'mm_install_date','Jun 02, 2017','yes'),(135,'mm_cron','a:4:{s:6:\"hourly\";a:0:{}s:5:\"daily\";a:1:{s:14:\"plugin_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:14:\"plugin_version\";s:2:\"el\";s:5:\"1.1.3\";}}s:7:\"monthly\";a:4:{s:11:\"php_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:11:\"php_version\";s:2:\"el\";s:6:\"5.5.22\";}s:12:\"plugin_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:12:\"plugin_count\";s:2:\"el\";i:8;}s:11:\"theme_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:11:\"theme_count\";s:2:\"el\";i:1;}s:13:\"current_theme\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:13:\"current_theme\";s:2:\"el\";s:4:\"Divi\";}}s:6:\"weekly\";a:1:{s:10:\"wp_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:10:\"wp_version\";s:2:\"el\";s:3:\"4.8\";}}}','yes'),(137,'wpforms_shareasale_id','1258907','yes'),(140,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141,'widget_optin-monster-api','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(142,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(148,'_transient_timeout_mm_spam_76d99ef97513e908c18a9c4f388b58a2','1496450061','no'),(149,'_transient_mm_spam_76d99ef97513e908c18a9c4f388b58a2','no','no'),(167,'do_activate','0','yes'),(170,'_transient_timeout_jetpack_https_test_message','1501719053','no'),(171,'_transient_jetpack_https_test_message','','no'),(174,'_site_transient_timeout_browser_b91896fd12ba9dcb721015de594cb08b','1496968833','no'),(175,'_site_transient_browser_b91896fd12ba9dcb721015de594cb08b','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"58.0.3029.81\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(178,'wpforms_review','a:2:{s:4:\"time\";i:1501544977;s:9:\"dismissed\";b:1;}','yes'),(179,'_transient_timeout_epc_purged_ebfd9f5ef39740b703081510c0b10bc3','1496364093','no'),(180,'_transient_epc_purged_ebfd9f5ef39740b703081510c0b10bc3','1496364033','no'),(186,'mm_churn','a:4:{s:2:\"ip\";s:12:\"66.96.183.47\";s:6:\"whoami\";s:11:\"glo.copyvet\";s:3:\"key\";s:2005:\"\n\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html>\n  <head>\n    <title>404 Not Found</title>\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n    <style type=\"text/css\">\n        body {\n        	font-family: Verdana, Arial, Helvetica, sans-serif;\n        	font-size: 12px;\n        	background-color:#367E8E;\n        	scrollbar-base-color: #005B70;\n        	scrollbar-arrow-color: #F3960B;\n        	scrollbar-DarkShadow-Color: #000000;\n        	color: #FFFFFF;\n			margin:0;\n        }\n        a { color:#021f25; text-decoration:none}\n        h1 {\n        	font-size: 18px;\n        	color: #FB9802;\n        	padding-bottom: 10px;\n        	background-image: url(sys_cpanel/images/bottombody.jpg);\n        	background-repeat: repeat-x;\n        	padding:5px 0 10px 15px;\n			margin:0;\n        }\n        #body-content p {\n        	padding-left: 25px;\n        	padding-right: 25px;\n        	line-height: 18px;\n        	padding-top: 5px;\n        	padding-bottom: 5px;\n        }\n        h2 {\n        	font-size: 14px;\n        	font-weight: bold;\n        	color: #FF9900;\n        	padding-left: 15px;\n        }\n    </style>\n  </head>\n  <body>\n    <div id=\"body-content\">  \n<!-- start content-->\n\n<!-- \n instead of REQUEST_URI, we could show absolute URL via:\n http://HTTP_HOST/REQUEST_URI\n    but what if its https:// or other protocol?\n    \n    SERVER_PORT_SECURE doesn\'t seem to be used\n    SERVER_PORT logic would break if they use alternate ports\n-->\n\n<h1>404 Not Found</h1>\n<p>The server can not find the requested page:</p>\n  <blockquote>\n    162.144.133.144/api/create (port 80)\n  </blockquote> \n<p>\n    Please forward this error screen to 162.144.133.144\'s \n    <a href=\"mailto:root@server.eigchurn.com?subject=Error message [404] 404 Not Found for 162.144.133.144/api/create port 80 on Friday, 02-Jun-2017 00:42:02 GMT\">\n    WebMaster</a>.\n</p>\n<hr />\n\n\n<!-- end content -->\n    </div>\n  </body>\n</html>\n\";s:4:\"test\";s:0:\"\";}','yes'),(192,'can_compress_scripts','1','no'),(193,'_site_transient_timeout_browser_69440949da6264b03a413f21a0145389','1496968943','no'),(194,'_site_transient_browser_69440949da6264b03a413f21a0145389','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:4:\"10.1\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(195,'mm_notice_dismissed','a:1:{s:36:\"80e050b4-490a-11e6-9055-0a1706783fd3\";b:1;}','yes'),(196,'jetpack_log','a:3:{i:0;a:4:{s:4:\"time\";i:1496364877;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1496365035;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:130042881;s:4:\"code\";s:8:\"register\";}i:2;a:5:{s:4:\"time\";i:1501544925;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:130042881;s:4:\"code\";s:24:\"custom_css_4.7_migration\";s:4:\"data\";s:5:\"start\";}}','no'),(197,'jetpack_private_options','a:1:{s:8:\"register\";s:78:\"GAumezplidILvP7qALBhRltchy13UaPM:m7JxzzU0MAOSOK9qTfGnRdHAoTNroiE2:1496365636:1\";}','yes'),(200,'jetpack_active_plan','a:7:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:18:\"product_name_short\";s:4:\"Free\";s:10:\"free_trial\";b:0;s:7:\"expired\";b:0;s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;}','yes'),(205,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:1;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(206,'jetpack_active_modules','a:22:{i:0;s:18:\"after-the-deadline\";i:1;s:12:\"contact-form\";i:2;s:20:\"custom-content-types\";i:3;s:10:\"custom-css\";i:4;s:19:\"gravatar-hovercards\";i:5;s:5:\"latex\";i:6;s:6:\"manage\";i:7;s:5:\"notes\";i:8;s:10:\"omnisearch\";i:9;s:13:\"post-by-email\";i:10;s:7:\"protect\";i:11;s:9:\"publicize\";i:12;s:10:\"sharedaddy\";i:13;s:10:\"shortcodes\";i:14;s:10:\"shortlinks\";i:15;s:5:\"stats\";i:16;s:13:\"subscriptions\";i:18;s:18:\"verification-tools\";i:19;s:17:\"widget-visibility\";i:20;s:7:\"widgets\";i:21;s:6:\"photon\";i:22;s:7:\"monitor\";}','yes'),(208,'jetpack_protect_key','529f3ae537fd249eb9aabce03662cf925fc9e943','no'),(214,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(215,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(216,'widget_eu_cookie_law_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(217,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(218,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(219,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(220,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(221,'widget_googleplus-badge','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(222,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(224,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(225,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(226,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(227,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(228,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(229,'widget_wpcom_social_media_icons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(230,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(231,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(232,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(234,'jetpack_portfolio','0','yes'),(252,'sharedaddy_disable_resources','0','yes'),(253,'jetpack_testimonial','0','yes'),(269,'jpsq_sync_checkout','0:0','no'),(272,'jetpack_next_sync_time_full-sync-enqueue','1501649278','yes'),(295,'jetpack_updates_sync_checksum','a:3:{s:11:\"update_core\";i:2078992829;s:14:\"update_plugins\";i:3108099939;s:13:\"update_themes\";i:1646454566;}','yes'),(316,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(317,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(318,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(326,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:26:\"feldman_jeremy@hotmail.com\";s:7:\"version\";s:5:\"4.8.1\";s:9:\"timestamp\";i:1501720505;}','no'),(334,'wpcom_publish_posts_with_markdown','1','yes'),(1454,'_transient_timeout_mm_api_calls','1501631333','no'),(1455,'_transient_mm_api_calls','a:11:{s:32:\"99eab8a7940f4bd7a84e271be47c4532\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:12:\"content-type\";s:24:\"text/html; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:03:30 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:10:\"set-cookie\";s:131:\"SESSION=a7s05o6uh0j76lclqs4m8hk144; expires=Mon, 31-Jul-2017 23:04:30 GMT; Max-Age=60; path=/; domain=mojomarketplace.com; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:14:\"content-length\";s:1:\"0\";}}s:4:\"body\";b:0;s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"a7s05o6uh0j76lclqs4m8hk144\";s:7:\"expires\";i:1501542270;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";b:0;s:3:\"raw\";s:327:\"HTTP/1.1 200 OK\r\nContent-Type: text/html; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:03:30 GMT\r\nServer: nginx/1.10.1\r\nSet-Cookie: SESSION=a7s05o6uh0j76lclqs4m8hk144; expires=Mon, 31-Jul-2017 23:04:30 GMT; Max-Age=60; path=/; domain=mojomarketplace.com; HttpOnly\r\nX-Powered-By: PHP/5.6.22\r\nContent-Length: 0\r\nConnection: Close\r\n\r\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:6:{s:12:\"content-type\";a:1:{i:0;s:24:\"text/html; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:03:30 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:10:\"set-cookie\";a:1:{i:0;s:131:\"SESSION=a7s05o6uh0j76lclqs4m8hk144; expires=Mon, 31-Jul-2017 23:04:30 GMT; Max-Age=60; path=/; domain=mojomarketplace.com; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:14:\"content-length\";a:1:{i:0;s:1:\"0\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:56:\"https://api.mojomarketplace.com/api/v1/meta/landing_page\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"a7s05o6uh0j76lclqs4m8hk144\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:5:{s:7:\"expires\";i:1501542270;s:7:\"max-age\";i:1501542270;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501542210;s:11:\"last-access\";i:1501542210;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501542210;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"8b6414ea1a1f66f96e32726bc72b5763\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";s:12:\"nginx/1.10.2\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:03:31 GMT\";s:12:\"content-type\";s:16:\"application/json\";s:13:\"last-modified\";s:29:\"Mon, 17 Jul 2017 20:22:40 GMT\";s:11:\"x-cacheable\";s:17:\"NO: Not Cacheable\";s:4:\"etag\";s:16:\"W/\"596d1c90-21b\"\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:9:\"x-varnish\";s:8:\"69927685\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:4:\"body\";s:539:\"{\n   \"BlueHost\":\"bluehost\",\n   \"BlueHost_for_Education\":\"bluehost\",\n   \"BlueHost_Optimized_for_WordPress\":\"bluehost\",\n   \"Bluehost_QI\":\"bluehost\",\n   \"Bluehost_India\":\"bluehost-india\",\n   \"Just_Host\":\"default\",\n   \"Just_Host_QI\":\"default\",\n   \"HostMonster\":\"default\",\n   \"Hostmonster_QI\":\"default\",\n   \"HostGator_QI\":\"default\",\n   \"HostGator_com_for_Resellers\":\"default\",\n   \"Hostgator_Com_LLC\":\"default\",\n   \"HostGatorSG\":\"default\",\n   \"Hostgator_India\":\"hostgator-india\",\n   \"iPower\":\"ipower\",\n   \"iPage\":\"ipage\",\n   \"FatCow\":\"fatcow\"\n}\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:539:\"{\n   \"BlueHost\":\"bluehost\",\n   \"BlueHost_for_Education\":\"bluehost\",\n   \"BlueHost_Optimized_for_WordPress\":\"bluehost\",\n   \"Bluehost_QI\":\"bluehost\",\n   \"Bluehost_India\":\"bluehost-india\",\n   \"Just_Host\":\"default\",\n   \"Just_Host_QI\":\"default\",\n   \"HostMonster\":\"default\",\n   \"Hostmonster_QI\":\"default\",\n   \"HostGator_QI\":\"default\",\n   \"HostGator_com_for_Resellers\":\"default\",\n   \"Hostgator_Com_LLC\":\"default\",\n   \"HostGatorSG\":\"default\",\n   \"Hostgator_India\":\"hostgator-india\",\n   \"iPower\":\"ipower\",\n   \"iPage\":\"ipage\",\n   \"FatCow\":\"fatcow\"\n}\n\";s:3:\"raw\";s:888:\"HTTP/1.1 200 OK\r\nServer: nginx/1.10.2\r\nDate: Mon, 31 Jul 2017 23:03:31 GMT\r\nContent-Type: application/json\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nLast-Modified: Mon, 17 Jul 2017 20:22:40 GMT\r\nX-Cacheable: NO: Not Cacheable\r\nETag: W/\"596d1c90-21b\"\r\nContent-Encoding: gzip\r\nVary: Accept-Encoding\r\nX-Varnish: 69927685\r\nAccept-Ranges: bytes\r\n\r\n{\n   \"BlueHost\":\"bluehost\",\n   \"BlueHost_for_Education\":\"bluehost\",\n   \"BlueHost_Optimized_for_WordPress\":\"bluehost\",\n   \"Bluehost_QI\":\"bluehost\",\n   \"Bluehost_India\":\"bluehost-india\",\n   \"Just_Host\":\"default\",\n   \"Just_Host_QI\":\"default\",\n   \"HostMonster\":\"default\",\n   \"Hostmonster_QI\":\"default\",\n   \"HostGator_QI\":\"default\",\n   \"HostGator_com_for_Resellers\":\"default\",\n   \"Hostgator_Com_LLC\":\"default\",\n   \"HostGatorSG\":\"default\",\n   \"Hostgator_India\":\"hostgator-india\",\n   \"iPower\":\"ipower\",\n   \"iPage\":\"ipage\",\n   \"FatCow\":\"fatcow\"\n}\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.2\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:03:31 GMT\";}s:12:\"content-type\";a:1:{i:0;s:16:\"application/json\";}s:13:\"last-modified\";a:1:{i:0;s:29:\"Mon, 17 Jul 2017 20:22:40 GMT\";}s:11:\"x-cacheable\";a:1:{i:0;s:17:\"NO: Not Cacheable\";}s:4:\"etag\";a:1:{i:0;s:16:\"W/\"596d1c90-21b\"\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:4:\"vary\";a:1:{i:0;s:15:\"Accept-Encoding\";}s:9:\"x-varnish\";a:1:{i:0;s:8:\"69927685\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:69:\"https://www.mojomarketplace.com/mojo-plugin-assets/json/branding.json\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"69cccbc3a560efe68697e7469cb209f1\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:13:\"accept-ranges\";s:5:\"bytes\";s:12:\"content-type\";s:16:\"application/json\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:48 GMT\";s:4:\"etag\";s:14:\"\"597a0866-207\"\";s:13:\"last-modified\";s:29:\"Thu, 27 Jul 2017 15:36:06 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:14:\"content-length\";s:3:\"519\";}}s:4:\"body\";s:519:\"{\n   \"themes-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   },\n   \"plugins-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   },\n   \"services-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   }\n}\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:519:\"{\n   \"themes-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   },\n   \"plugins-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   },\n   \"services-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   }\n}\n\";s:3:\"raw\";s:759:\"HTTP/1.1 200 OK\r\nAccept-Ranges: bytes\r\nContent-Type: application/json\r\nDate: Mon, 31 Jul 2017 23:48:48 GMT\r\nETag: \"597a0866-207\"\r\nLast-Modified: Thu, 27 Jul 2017 15:36:06 GMT\r\nServer: nginx/1.10.1\r\nContent-Length: 519\r\nConnection: Close\r\n\r\n{\n   \"themes-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   },\n   \"plugins-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   },\n   \"services-single-item\":{\n      \"url\":\"http:\\/\\/mojo.live\\/wplive \",\n      \"img\":\"https:\\/\\/mojomarketplace.com\\/mojo-plugin-assets\\/img\\/offers\\/wplive-single.png\"\n   }\n}\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:7:{s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}s:12:\"content-type\";a:1:{i:0;s:16:\"application/json\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:48 GMT\";}s:4:\"etag\";a:1:{i:0;s:14:\"\"597a0866-207\"\";}s:13:\"last-modified\";a:1:{i:0;s:29:\"Thu, 27 Jul 2017 15:36:06 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:14:\"content-length\";a:1:{i:0;s:3:\"519\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:80:\"https://api.mojomarketplace.com/mojo-plugin-assets/json/mojo-partner-offers.json\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"a5ef76a6fdef8fa0451c7c8150f39e8b\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:7:{s:13:\"accept-ranges\";s:5:\"bytes\";s:12:\"content-type\";s:16:\"application/json\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:48 GMT\";s:4:\"etag\";s:15:\"\"57fd06be-4998\"\";s:13:\"last-modified\";s:29:\"Tue, 11 Oct 2016 15:35:26 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:14:\"content-length\";s:5:\"18840\";}}s:4:\"body\";s:18840:\"{\n   \"\\/woo\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/commerce\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/shop\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/store\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/checkout\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/credit\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/sell\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/analytics\\/i\":{\n      \"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\n      \"name\":\"Google Analytics\",\n      \"title\":\"Google Analytics Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\n      \"short_desc\":\" You can follow users on your site in real time and get in depth analysis as to their behaviors when browsing your website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\"\n   },\n   \"\\/stats\\/i\":{\n      \"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\n      \"name\":\"Google Analytics\",\n      \"title\":\"Google Analytics Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\n      \"short_desc\":\" You can follow users on your site in real time and get in depth analysis as to their behaviors when browsing your website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\"\n   },\n   \"\\/sitemap\\/i\":{\n      \"id\":\"530788ba-c450-45eb-b154-47ce0a141528\",\n      \"name\":\"Sitemap\",\n      \"title\":\"SEO Sitemap Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-an-seo-friendly-sitemap-to-your-wordpress-site\",\n      \"short_desc\":\"Google loves to see a list of every page on your site and how those pages relate to each other.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530788ba-c450-45eb-b154-47ce0a141528-260x156-r3HBm.png\"\n   },\n   \"\\/seo\\/i\":{\n      \"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\n      \"name\":\"Search Engine Optimization (seo)\",\n      \"title\":\"Search Engine Optimization (seo)\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/wordpress-seo\",\n      \"short_desc\":\"The service ensures your content is fully optimized for the search engines.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-0pE1j.png\"\n   },\n   \"\\/yoast\\/i\":{\n      \"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\n      \"name\":\"Setting Up Yoast SEO\",\n      \"title\":\"Setting Up Yoast SEO\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/wordpress-seo\",\n      \"short_desc\":\"The service ensures your content is fully optimized for the search engines.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-0pE1j.png\"\n   },\n   \"\\/buddypress\\/i\":{\n      \"id\":\"53078511-1974-470c-8ed5-43500a141528\",\n      \"name\":\"BuddyPress\",\n      \"title\":\"BuddyPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-buddypress-wordpress-plugin\",\n      \"short_desc\":\"This service will have you all setup and ready to start using your website as a social network.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-53078511-1974-470c-8ed5-43500a141528-square-mm-resize-260x156-530bb499b8714.png\"\n   },\n   \"\\/buddy press\\/i\":{\n      \"id\":\"53078511-1974-470c-8ed5-43500a141528\",\n      \"name\":\"BuddyPress\",\n      \"title\":\"BuddyPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-buddypress-wordpress-plugin\",\n      \"short_desc\":\"This service will have you all setup and ready to start using your website as a social network.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-53078511-1974-470c-8ed5-43500a141528-square-mm-resize-260x156-530bb499b8714.png\"\n   },\n   \"\\/bbpress\\/i\":{\n      \"id\":\"530783b3-d4d8-4823-ad1e-70310a140b28\",\n      \"name\":\"bbPress\",\n      \"title\":\"bbPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-bbpress-wordpress-plugin\",\n      \"short_desc\":\"From within your WordPress admin, you can easily setup and moderate forums, topics and replies.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530783b3-d4d8-4823-ad1e-70310a140b28-square-mm-resize-260x156-530bb1f321d8d.png\"\n   },\n   \"\\/bb press\\/i\":{\n      \"id\":\"530783b3-d4d8-4823-ad1e-70310a140b28\",\n      \"name\":\"bbPress\",\n      \"title\":\"bbPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-bbpress-wordpress-plugin\",\n      \"short_desc\":\"From within your WordPress admin, you can easily setup and moderate forums, topics and replies.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530783b3-d4d8-4823-ad1e-70310a140b28-square-mm-resize-260x156-530bb1f321d8d.png\"\n   },\n   \"\\/contact\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/ form\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/news\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/map\\/i\":{\n      \"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\n      \"name\":\"Google Maps\",\n      \"title\":\"Setup a Google Map\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\n      \"short_desc\":\"Let us add Google Maps to your WordPress website for you. We can add up to 10 different locations with include custom navigation.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\"\n   },\n   \"\\/locat\\/i\":{\n      \"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\n      \"name\":\"Google Maps\",\n      \"title\":\"Setup a Google Map\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\n      \"short_desc\":\"Let us add Google Maps to your WordPress website for you. We can add up to 10 different locations with include custom navigation.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\"\n   },\n   \"\\/hack\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/fence\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/protect\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/backup\\/i\":{\n      \"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\n      \"name\":\"Configuring Your Site Backup\",\n      \"title\":\"Setup Site Backups\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\n      \"short_desc\":\"With this backup service we will set things up so you can continually backup your WordPress website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-cr17X.png\"\n   },\n   \"\\/restor\\/i\":{\n      \"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\n      \"name\":\"Configuring Your Site Backup\",\n      \"title\":\"Setup Site Backups\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\n      \"short_desc\":\"With this backup service we will set things up so you can continually backup your WordPress website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-cr17X.png\"\n   },\n   \"\\/color\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Changing Your Site Colors\",\n      \"title\":\"Change Your Site Colors\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/brand\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Match Your Site Branding\",\n      \"title\":\"Match Your Site Branding\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"This is a great way to ensure that your theme properly reflects your unique style and brand.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/design\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Change The Colors In Your Design\",\n      \"title\":\"Change The Colors In Your Design\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"This is a great way to ensure that your theme properly reflects your unique style and brand.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/copywri\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Professional Copywriting\",\n      \"title\":\"Professional Copywriting\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   },\n   \"\\/content\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Writing Professional Content\",\n      \"title\":\"Writing Professional Content\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   },\n   \"\\/write\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Professionaly Written Copy\",\n      \"title\":\"Professionaly Written Copy\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   }\n}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:18840:\"{\n   \"\\/woo\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/commerce\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/shop\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/store\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/checkout\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/credit\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/sell\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/analytics\\/i\":{\n      \"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\n      \"name\":\"Google Analytics\",\n      \"title\":\"Google Analytics Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\n      \"short_desc\":\" You can follow users on your site in real time and get in depth analysis as to their behaviors when browsing your website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\"\n   },\n   \"\\/stats\\/i\":{\n      \"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\n      \"name\":\"Google Analytics\",\n      \"title\":\"Google Analytics Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\n      \"short_desc\":\" You can follow users on your site in real time and get in depth analysis as to their behaviors when browsing your website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\"\n   },\n   \"\\/sitemap\\/i\":{\n      \"id\":\"530788ba-c450-45eb-b154-47ce0a141528\",\n      \"name\":\"Sitemap\",\n      \"title\":\"SEO Sitemap Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-an-seo-friendly-sitemap-to-your-wordpress-site\",\n      \"short_desc\":\"Google loves to see a list of every page on your site and how those pages relate to each other.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530788ba-c450-45eb-b154-47ce0a141528-260x156-r3HBm.png\"\n   },\n   \"\\/seo\\/i\":{\n      \"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\n      \"name\":\"Search Engine Optimization (seo)\",\n      \"title\":\"Search Engine Optimization (seo)\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/wordpress-seo\",\n      \"short_desc\":\"The service ensures your content is fully optimized for the search engines.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-0pE1j.png\"\n   },\n   \"\\/yoast\\/i\":{\n      \"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\n      \"name\":\"Setting Up Yoast SEO\",\n      \"title\":\"Setting Up Yoast SEO\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/wordpress-seo\",\n      \"short_desc\":\"The service ensures your content is fully optimized for the search engines.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-0pE1j.png\"\n   },\n   \"\\/buddypress\\/i\":{\n      \"id\":\"53078511-1974-470c-8ed5-43500a141528\",\n      \"name\":\"BuddyPress\",\n      \"title\":\"BuddyPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-buddypress-wordpress-plugin\",\n      \"short_desc\":\"This service will have you all setup and ready to start using your website as a social network.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-53078511-1974-470c-8ed5-43500a141528-square-mm-resize-260x156-530bb499b8714.png\"\n   },\n   \"\\/buddy press\\/i\":{\n      \"id\":\"53078511-1974-470c-8ed5-43500a141528\",\n      \"name\":\"BuddyPress\",\n      \"title\":\"BuddyPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-buddypress-wordpress-plugin\",\n      \"short_desc\":\"This service will have you all setup and ready to start using your website as a social network.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-53078511-1974-470c-8ed5-43500a141528-square-mm-resize-260x156-530bb499b8714.png\"\n   },\n   \"\\/bbpress\\/i\":{\n      \"id\":\"530783b3-d4d8-4823-ad1e-70310a140b28\",\n      \"name\":\"bbPress\",\n      \"title\":\"bbPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-bbpress-wordpress-plugin\",\n      \"short_desc\":\"From within your WordPress admin, you can easily setup and moderate forums, topics and replies.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530783b3-d4d8-4823-ad1e-70310a140b28-square-mm-resize-260x156-530bb1f321d8d.png\"\n   },\n   \"\\/bb press\\/i\":{\n      \"id\":\"530783b3-d4d8-4823-ad1e-70310a140b28\",\n      \"name\":\"bbPress\",\n      \"title\":\"bbPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-bbpress-wordpress-plugin\",\n      \"short_desc\":\"From within your WordPress admin, you can easily setup and moderate forums, topics and replies.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530783b3-d4d8-4823-ad1e-70310a140b28-square-mm-resize-260x156-530bb1f321d8d.png\"\n   },\n   \"\\/contact\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/ form\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/news\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/map\\/i\":{\n      \"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\n      \"name\":\"Google Maps\",\n      \"title\":\"Setup a Google Map\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\n      \"short_desc\":\"Let us add Google Maps to your WordPress website for you. We can add up to 10 different locations with include custom navigation.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\"\n   },\n   \"\\/locat\\/i\":{\n      \"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\n      \"name\":\"Google Maps\",\n      \"title\":\"Setup a Google Map\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\n      \"short_desc\":\"Let us add Google Maps to your WordPress website for you. We can add up to 10 different locations with include custom navigation.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\"\n   },\n   \"\\/hack\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/fence\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/protect\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/backup\\/i\":{\n      \"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\n      \"name\":\"Configuring Your Site Backup\",\n      \"title\":\"Setup Site Backups\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\n      \"short_desc\":\"With this backup service we will set things up so you can continually backup your WordPress website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-cr17X.png\"\n   },\n   \"\\/restor\\/i\":{\n      \"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\n      \"name\":\"Configuring Your Site Backup\",\n      \"title\":\"Setup Site Backups\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\n      \"short_desc\":\"With this backup service we will set things up so you can continually backup your WordPress website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-cr17X.png\"\n   },\n   \"\\/color\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Changing Your Site Colors\",\n      \"title\":\"Change Your Site Colors\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/brand\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Match Your Site Branding\",\n      \"title\":\"Match Your Site Branding\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"This is a great way to ensure that your theme properly reflects your unique style and brand.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/design\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Change The Colors In Your Design\",\n      \"title\":\"Change The Colors In Your Design\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"This is a great way to ensure that your theme properly reflects your unique style and brand.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/copywri\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Professional Copywriting\",\n      \"title\":\"Professional Copywriting\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   },\n   \"\\/content\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Writing Professional Content\",\n      \"title\":\"Writing Professional Content\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   },\n   \"\\/write\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Professionaly Written Copy\",\n      \"title\":\"Professionaly Written Copy\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   }\n}\";s:3:\"raw\";s:19083:\"HTTP/1.1 200 OK\r\nAccept-Ranges: bytes\r\nContent-Type: application/json\r\nDate: Mon, 31 Jul 2017 23:48:48 GMT\r\nETag: \"57fd06be-4998\"\r\nLast-Modified: Tue, 11 Oct 2016 15:35:26 GMT\r\nServer: nginx/1.10.1\r\nContent-Length: 18840\r\nConnection: Close\r\n\r\n{\n   \"\\/woo\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/commerce\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/shop\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/store\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/checkout\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/credit\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/sell\\/i\":{\n      \"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\n      \"name\":\"WooCommerce\",\n      \"title\":\"WooCommerce Integration\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\n      \"short_desc\":\"WooCommerce will transform your WordPress site into a full eCommerce store that is simple to use.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-mDPp8.png\"\n   },\n   \"\\/analytics\\/i\":{\n      \"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\n      \"name\":\"Google Analytics\",\n      \"title\":\"Google Analytics Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\n      \"short_desc\":\" You can follow users on your site in real time and get in depth analysis as to their behaviors when browsing your website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\"\n   },\n   \"\\/stats\\/i\":{\n      \"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\n      \"name\":\"Google Analytics\",\n      \"title\":\"Google Analytics Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\n      \"short_desc\":\" You can follow users on your site in real time and get in depth analysis as to their behaviors when browsing your website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\"\n   },\n   \"\\/sitemap\\/i\":{\n      \"id\":\"530788ba-c450-45eb-b154-47ce0a141528\",\n      \"name\":\"Sitemap\",\n      \"title\":\"SEO Sitemap Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-an-seo-friendly-sitemap-to-your-wordpress-site\",\n      \"short_desc\":\"Google loves to see a list of every page on your site and how those pages relate to each other.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530788ba-c450-45eb-b154-47ce0a141528-260x156-r3HBm.png\"\n   },\n   \"\\/seo\\/i\":{\n      \"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\n      \"name\":\"Search Engine Optimization (seo)\",\n      \"title\":\"Search Engine Optimization (seo)\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/wordpress-seo\",\n      \"short_desc\":\"The service ensures your content is fully optimized for the search engines.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-0pE1j.png\"\n   },\n   \"\\/yoast\\/i\":{\n      \"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\n      \"name\":\"Setting Up Yoast SEO\",\n      \"title\":\"Setting Up Yoast SEO\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/wordpress-seo\",\n      \"short_desc\":\"The service ensures your content is fully optimized for the search engines.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-0pE1j.png\"\n   },\n   \"\\/buddypress\\/i\":{\n      \"id\":\"53078511-1974-470c-8ed5-43500a141528\",\n      \"name\":\"BuddyPress\",\n      \"title\":\"BuddyPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-buddypress-wordpress-plugin\",\n      \"short_desc\":\"This service will have you all setup and ready to start using your website as a social network.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-53078511-1974-470c-8ed5-43500a141528-square-mm-resize-260x156-530bb499b8714.png\"\n   },\n   \"\\/buddy press\\/i\":{\n      \"id\":\"53078511-1974-470c-8ed5-43500a141528\",\n      \"name\":\"BuddyPress\",\n      \"title\":\"BuddyPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-buddypress-wordpress-plugin\",\n      \"short_desc\":\"This service will have you all setup and ready to start using your website as a social network.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-53078511-1974-470c-8ed5-43500a141528-square-mm-resize-260x156-530bb499b8714.png\"\n   },\n   \"\\/bbpress\\/i\":{\n      \"id\":\"530783b3-d4d8-4823-ad1e-70310a140b28\",\n      \"name\":\"bbPress\",\n      \"title\":\"bbPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-bbpress-wordpress-plugin\",\n      \"short_desc\":\"From within your WordPress admin, you can easily setup and moderate forums, topics and replies.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530783b3-d4d8-4823-ad1e-70310a140b28-square-mm-resize-260x156-530bb1f321d8d.png\"\n   },\n   \"\\/bb press\\/i\":{\n      \"id\":\"530783b3-d4d8-4823-ad1e-70310a140b28\",\n      \"name\":\"bbPress\",\n      \"title\":\"bbPress Setup\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/install-and-setup-bbpress-wordpress-plugin\",\n      \"short_desc\":\"From within your WordPress admin, you can easily setup and moderate forums, topics and replies.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530783b3-d4d8-4823-ad1e-70310a140b28-square-mm-resize-260x156-530bb1f321d8d.png\"\n   },\n   \"\\/contact\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/ form\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/news\\/i\":{\n      \"id\":\"\",\n      \"name\":\"Constant Contact Forms\",\n      \"title\":\"Constant Contact Forms\",\n      \"buy_now_btn\":\"Learn More\",\n      \"button_class\":\"button thickbox open-plugin-details-modal\",\n      \"detail_class\":\"thickbox open-plugin-details-modal\",\n      \"url\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"buy_now_link\":\"plugin-install.php?tab=plugin-information&plugin=constant-contact-forms&TB_iframe=true&width=600&height=550\",\n      \"short_desc\":\"Constant Contact Forms makes it fast and easy to capture visitor information right from your WordPress site.\",\n      \"author\":\"Constant Contact\",\n      \"author_url\":\"https://www.constantcontact.com/\",\n      \"img\":\"http:\\/\\/ps.w.org\\/constant-contact-forms\\/assets\\/icon-256x256.png\"\n   },\n   \"\\/map\\/i\":{\n      \"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\n      \"name\":\"Google Maps\",\n      \"title\":\"Setup a Google Map\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\n      \"short_desc\":\"Let us add Google Maps to your WordPress website for you. We can add up to 10 different locations with include custom navigation.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\"\n   },\n   \"\\/locat\\/i\":{\n      \"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\n      \"name\":\"Google Maps\",\n      \"title\":\"Setup a Google Map\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\n      \"short_desc\":\"Let us add Google Maps to your WordPress website for you. We can add up to 10 different locations with include custom navigation.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"http:\\/\\/images.mojomarketplace.com\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\"\n   },\n   \"\\/hack\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/fence\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/protect\\/i\":{\n      \"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\n      \"name\":\"Securing Your WordPress Site\",\n      \"title\":\"Secure Your WordPress Site\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\n      \"short_desc\":\"Let us help you drastically increase your site’s security.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-Qji3u.png\"\n   },\n   \"\\/backup\\/i\":{\n      \"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\n      \"name\":\"Configuring Your Site Backup\",\n      \"title\":\"Setup Site Backups\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\n      \"short_desc\":\"With this backup service we will set things up so you can continually backup your WordPress website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-cr17X.png\"\n   },\n   \"\\/restor\\/i\":{\n      \"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\n      \"name\":\"Configuring Your Site Backup\",\n      \"title\":\"Setup Site Backups\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\n      \"short_desc\":\"With this backup service we will set things up so you can continually backup your WordPress website.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-cr17X.png\"\n   },\n   \"\\/color\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Changing Your Site Colors\",\n      \"title\":\"Change Your Site Colors\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/brand\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Match Your Site Branding\",\n      \"title\":\"Match Your Site Branding\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"This is a great way to ensure that your theme properly reflects your unique style and brand.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/design\\/i\":{\n      \"id\":\"53ee5ec2-eff0-441a-944d-52050a140b28\",\n      \"name\":\"Change The Colors In Your Design\",\n      \"title\":\"Change The Colors In Your Design\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/use-my-branding-to-customize-my-wordpress-site\",\n      \"short_desc\":\"This is a great way to ensure that your theme properly reflects your unique style and brand.\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5ec2-eff0-441a-944d-52050a140b28-260x156-1GDl6.png\"\n   },\n   \"\\/copywri\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Professional Copywriting\",\n      \"title\":\"Professional Copywriting\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   },\n   \"\\/content\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Writing Professional Content\",\n      \"title\":\"Writing Professional Content\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   },\n   \"\\/write\\/i\":{\n      \"id\":\"53ee5dce-e2ec-4697-a09a-52050a140b28\",\n      \"name\":\"Professionaly Written Copy\",\n      \"title\":\"Professionaly Written Copy\",\n      \"url\":\"https:\\/\\/www.mojomarketplace.com\\/item\\/professional-copywriting-for-your-wordpress-site\",\n      \"short_desc\":\"We have an amazing team of college grads and English majors who just love writing content (Weird, right?).\",\n      \"author\":\"\",\n      \"author_url\":\"\",\n      \"img\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53ee5dce-e2ec-4697-a09a-52050a140b28-260x156-EGNP7.png\"\n   }\n}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:7:{s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}s:12:\"content-type\";a:1:{i:0;s:16:\"application/json\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:48 GMT\";}s:4:\"etag\";a:1:{i:0;s:15:\"\"57fd06be-4998\"\";}s:13:\"last-modified\";a:1:{i:0;s:29:\"Tue, 11 Oct 2016 15:35:26 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:14:\"content-length\";a:1:{i:0;s:5:\"18840\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:76:\"https://api.mojomarketplace.com/mojo-plugin-assets/json/search-patterns.json\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"111394a0ae98cfe780016e93c27d916a\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";s:1:\"*\";s:13:\"cache-control\";s:3:\"900\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:49 GMT\";s:6:\"server\";s:12:\"nginx/1.12.0\";s:10:\"set-cookie\";s:143:\"SESSION=kmt8qrudmm8anpja0ugd223gk6; expires=Sat, 05-Aug-2017 03:48:49 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.30\";s:14:\"content-length\";s:5:\"49901\";}}s:4:\"body\";s:49901:\"{\"status\":\"success\",\"items\":[{\"id\":\"5377b431-d8a8-431b-a711-50c10a141528\",\"name\":\"Highend Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"highend-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/highend-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":26961,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"video, galleries, restaurant, coach, parallax, seo, church, real estate, store, landing page, presentation, photography, minimal, WordPress, responsive, Corporate, Business, Drag and Drop Page Builder, shop, woocommerce, blog, portfolio, gallery, modern, clean, Slider\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5377b431-d8a8-431b-a711-50c10a141528-368x296-95lrK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-590111d8-1938-4c59-907f-19d10a141539-GuDbh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-590111d8-1938-4c59-907f-19d10a141539-T3LLc.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-ptl5s.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-QYQHF.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-800gn.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-D54Pg.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-UCmVZ.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5952d5e7-5f64-4a8b-b93a-1bc00a14153b-CzvQB.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive - Mobile Ready\",\"WooCommerce - Build Your Online Shop\",\"Drag &amp; Drop Page Builder\"],\"created\":\"2014-05-17 14:11:49\",\"created_timestamp\":1400357509,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/highend\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"518048d9-ae08-4939-93ac-0a000a140b1e\",\"name\":\"Creativo 6 Responsive Multi-Purpose WordPress Theme\",\"slug\":\"creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"sales_count\":11573,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, blog, Business, clean, modern, portfolio, creative, HTML5, agency, church, coach, page builder\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-368x296-wh0MK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-136x136-Ap575.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-260x156-ejN1Y.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-igiIT.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-ksXYf.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-EmrSF.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-bs4oQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-AImHx.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-xCNaq.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cyImm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cYsfQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-aINqv.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-1QYDb.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-mhnvB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-dQ1yf.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-neWr1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-PpC6f.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-nmFCK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i2occ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i3hhe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-yuBJ1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-LEwG8.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-vVopz.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-RWrTA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-r67bK.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58e292b7-d944-4114-a587-517c0a14153a-NWw73.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Drag and Drop Page Builder\",\"Responsive Design and Retina Ready\",\"Ecommerce Ready - Works with WooCommerce\"],\"created\":\"2013-04-30 17:03:15\",\"created_timestamp\":1367362995,\"demo_url\":\"https:\\/\\/rockythemes.com\\/creativo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"55f82a3d-0ab8-49c6-a224-1a220a141f38\",\"name\":\"Daisy Simple &amp; Minimal WordPress Blog\",\"slug\":\"daisy-simple-amp-minimal-wordpress-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/daisy-simple-amp-minimal-wordpress-blog\",\"sales_count\":3750,\"is_service\":false,\"rating\":5,\"seller_name\":\"LazaThemes\",\"seller_url\":\"store\\/lazathemes\",\"tags\":\"responsive, blog, minimal, personal, blogging, bootstrap\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-136x136-z6jqO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-260x156-ElBpX.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55f82a3d-0ab8-49c6-a224-1a220a141f38-1800x1800-iX4uf.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55f82a3d-0ab8-49c6-a224-1a220a141f38-ldV0Y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Easy to set up\",\"Clean and professional design\",\"Responsive Layout\"],\"created\":\"2015-09-15 08:37:14\",\"created_timestamp\":1442327834,\"demo_url\":\"http:\\/\\/lazathemes.com\\/demo\\/daisy-wp\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4f7a79714aaca6efc0ce4f7c933538cc\"},{\"id\":\"53a6de8b-9098-40bf-a57d-718e0a141528\",\"name\":\"Birch A Responsive WordPress Theme\",\"slug\":\"birch-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/birch-a-responsive-wordpress-theme\",\"sales_count\":2479,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"translation, tablet, iphone, photography, seo, retina, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, eco, service, natural, agriculture, bio, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, travel, modern, creative, woocommerce, mobile, multipurpose, ipad\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-368x296-gh5uf.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-136x136-GjY4S.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-260x156-aZts2.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-5fL3L.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-7s31Z.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-XeafI.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-611h4.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-YtsTh.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-LuRcX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-tilmc.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-wGrWo.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-QNS9l.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-9DbiX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-0wjF6.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53a6de8b-9098-40bf-a57d-718e0a141528-1180x660-tS7VZ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"SEO Ready\",\"Powerful Admin Panel\",\"Responsive Design\"],\"created\":\"2014-06-22 08:00:22\",\"created_timestamp\":1403445622,\"demo_url\":\"https:\\/\\/birch.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"5444f3ed-49bc-4484-9264-0f5c0a140b28\",\"name\":\"Zephyr A Beautiful WordPress Blog Theme\",\"slug\":\"zephyr-a-beautiful-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zephyr-a-beautiful-wordpress-blog-theme\",\"sales_count\":1513,\"is_service\":false,\"rating\":4.9,\"seller_name\":\"themeflame\",\"seller_url\":\"store\\/themeflame\",\"tags\":\"travel wordpress theme, Food Blog, instagram, responsive, beautiful, clean, beautiful design, modern, WordPress, HTML5, CSS3, fashion, agency, personal, Slider, news, retina, restaurant, minimal, multipurpose, design, elegant, flat, simple, Blog WordPress Themes, Blogger, Grid Blog, photoblog, personal blog, wordpress blog theme, photography blog, blog modern, health, wordpress blog, fashion blog, pretty blog, clean blog, blogging theme, family, theme, blogging wordpress theme, minimalist, wordpress themes, minimal design, simple wordpress theme, personal blog theme, wordpress theme, Personal WordPress Theme, wordpress templates, Personal WordPress Themes, wordpress mobile, personal site, food theme, blog minimal, mommy, seo, fashion theme, customizer, fashion template, layouts, foodie, fashionista, travel, blog, blogging, travelling blog, food\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-368x296-8Di6N.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-136x136-zMAwr.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-260x156-PQ45k.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5444f3ed-49bc-4484-9264-0f5c0a140b28-1800x1800-TtFpS.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5444f3ed-49bc-4484-9264-0f5c0a140b28-1180x660-S6J6V.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Blog and Portfolio Page\",\"Responsive Layout\"],\"created\":\"2014-10-20 06:11:25\",\"created_timestamp\":1413807085,\"demo_url\":\"http:\\/\\/themeflame.com\\/zephyr\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"13f401b35fbfa320cf306a891828f876\"},{\"id\":\"5659d4bf-6b80-434a-b566-64870a141f38\",\"name\":\"FREYJA Personal WordPress Theme for Bloggers\",\"slug\":\"freyja-personal-wordpress-theme-for-bloggers\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/freyja-personal-wordpress-theme-for-bloggers\",\"sales_count\":1432,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"SparrowAndSnow\",\"seller_url\":\"store\\/sparrow-and-snow\",\"tags\":\"audio, instagram, lifestyle, clean, simple, responsive, travel, food, elegant, design, modern, creative, easy, gallery, personal, fashion, photographer, video, Blogger\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58fe8554-6868-418f-a6ed-69a80a141539-6bIxM.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5659d4bf-6b80-434a-b566-64870a141f38-ch13X.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-zo4DU.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-6Vq6I.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-uoyC5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-mqENt.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-yl6Bs.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-EycmZ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-w5O3O.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58fe8554-6868-418f-a6ed-69a80a141539-nWtg4.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"10 Blog Layout\",\"Retina Ready\",\"Translation Ready\"],\"created\":\"2015-11-28 09:23:17\",\"created_timestamp\":1448727797,\"demo_url\":\"http:\\/\\/sparrowandsnow.com\\/freyja\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be9598299f6d395d43fa63d9ec92b3f1\"},{\"id\":\"51803aa2-7ec8-4ff0-b206-09fb0a140b1e\",\"name\":\"Aegaeus Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"aegaeus-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aegaeus-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1380,\"is_service\":false,\"rating\":3.9,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, Corporate, shop, magazine, news, design, music, modern, support, woocommerce, mobile, gallery, multipurpose, brankocee, ipad, agency, light, iphone, photography, white, videos, company, megamenu, sticky\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-368x296-KcSoi.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-136x136-gxRF6.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-260x156-J3rcd.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot1-mm-resize-1546x1800.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1800x1800-Hijw4.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot_1800-mm-resize-1800x857.jpg\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot2-mm-resize-1546x1800.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1180x660-CugyQ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Unlimited Colors\",\"Translation Ready\",\"WordPress 3.5+ Ready\"],\"created\":\"2013-04-30 15:50:55\",\"created_timestamp\":1367358655,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/aegaeus_wp\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"55233c6f-c31c-4ab8-8023-0d350a141f3c\",\"name\":\"Wunderful Clean &amp; Minimal WordPress Blog Theme\",\"slug\":\"wunderful-clean-amp-minimal-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wunderful-clean-amp-minimal-wordpress-blog-theme\",\"sales_count\":1376,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeDsgn\",\"seller_url\":\"store\\/themedsgn\",\"tags\":\"clean, simple, responsive, blog, minimal, WordPress, travel, music, modern, woocommerce, personal, blogging, fashion, recipe\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-136x136-8XtlH.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-260x156-B9ll6.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55233c6f-c31c-4ab8-8023-0d350a141f3c-1180x660-Rk6wt.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean, Elegant &amp; Responsive Layout\",\"Easy to Install &amp; Setup\",\"Suitable for Any Blog\"],\"created\":\"2015-04-06 20:44:54\",\"created_timestamp\":1428374694,\"demo_url\":\"http:\\/\\/themes.themedsgn.com\\/wunderful\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"6a91f75d7b640a42445fafc86a421ac1\"},{\"id\":\"53589542-c8f4-491e-ad1e-29c90a141528\",\"name\":\"Nectar A Responsive WordPress Theme\",\"slug\":\"nectar-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nectar-a-responsive-wordpress-theme\",\"sales_count\":1374,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, photography, seo, retina, fashion, Custom, startup, Fitness, church, office, cafe, environmental, sports, eco, service, organic, natural, customize, agriculture, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, Green, travel, modern\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-368x296-BWaK1.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-136x136-0pPAV.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-MZJXd.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-WwuAA.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-rVJ4N.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YWsAd.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-qGPwW.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-JMt5C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YSJik.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-2hEmp.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-ZMB1W.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-B6hX8.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53589542-c8f4-491e-ad1e-29c90a141528-1180x660-oTokc.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean and Modern\",\"WooCommerce\",\"Responsive Design\"],\"created\":\"2014-04-23 23:04:45\",\"created_timestamp\":1398315885,\"demo_url\":\"https:\\/\\/nectar.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"54626dc3-c4d8-40b3-b441-3ff60a141528\",\"name\":\"Nimva Ultimate Multi Purpose WordPress Theme\",\"slug\":\"nimva-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nimva-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1348,\"is_service\":false,\"rating\":5,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, Business, clean, minimal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-136x136-7Bg7b.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-260x156-Vucki.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-UomN2.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-FYTxh.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-WktDL.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-rlk5m.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-8RwBo.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-3DFLY.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54626dc3-c4d8-40b3-b441-3ff60a141528-1180x660-uEBMb.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Powerful Admin Panel\",\"Retina Ready\",\"Drag and Drop Visual Composer elements\"],\"created\":\"2014-11-11 14:27:09\",\"created_timestamp\":1415741229,\"demo_url\":\"http:\\/\\/rockythemes.com\\/nimva\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"57c43604-3e40-4824-9219-1cc70a14153b\",\"name\":\"The Core Multi-Purpose WordPress Theme\",\"slug\":\"the-core-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/the-core-multi-purpose-wordpress-theme\",\"sales_count\":1317,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeFuse\",\"seller_url\":\"store\\/themefuse\",\"tags\":\"catering, events, kindergarten, architecture, lawyers, responsive, blog, Business, WordPress, Corporate, medical, magazine, restaurant, creative, agency, charity, bakery, cleaning, wedding, church\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57c43604-3e40-4824-9219-1cc70a14153b-KHmWi.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5928264a-c4f8-4dcc-91d9-56040a141539-HFsZg.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5928264a-c4f8-4dcc-91d9-56040a141539-mXR7A.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57c43604-3e40-4824-9219-1cc70a14153b-vgV3U.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5928264a-c4f8-4dcc-91d9-56040a141539-zQKuI.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"20 Website Demos Included (more to come for FREE)\",\"1 Click  Demo Install\",\"Visual Page Builder\"],\"created\":\"2016-08-29 07:18:34\",\"created_timestamp\":1472476714,\"demo_url\":\"https:\\/\\/demo.themefuse.com\\/the-core\\/?market_referrer=mojo\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fe54e73e29cac33917ee48ab110b9bef\"},{\"id\":\"532798c5-2834-440b-8469-255a0a141528\",\"name\":\"Creative Blog WordPress Theme\",\"slug\":\"creative-blog-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creative-blog-wordpress-theme\",\"sales_count\":1125,\"is_service\":false,\"rating\":3,\"seller_name\":\"DessignThemes\",\"seller_url\":\"store\\/dessign-themes\",\"tags\":\"portfolio, blog, photography\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-532798c5-2834-440b-8469-255a0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-532798c5-2834-440b-8469-255a0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-532798c5-2834-440b-8469-255a0a141528-260x156.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/screen_shots-532798c5-2834-440b-8469-255a0a141528-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-532798c5-2834-440b-8469-255a0a141528-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Responsive Layout\",\"Slider Video Feature\",\"Theme Options panel\"],\"created\":\"2014-03-17 19:15:51\",\"created_timestamp\":1395105351,\"demo_url\":\"http:\\/\\/www.dessign.net\\/creativeblogtheme\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"12a1f004a6ed51582a3f0de432cf020d\"},{\"id\":\"55dd6a85-24f0-438a-8723-1ea40a141f38\",\"name\":\"Solstice Elegant WordPress Theme\",\"slug\":\"solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"sales_count\":1057,\"is_service\":false,\"rating\":5,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"responsive, portfolio, blog, minimal, Business, WordPress, travel, modern, creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, iphone, photography, seo, retina, customizer, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, service, natural, customize, agriculture, bio, clean\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-368x296-czJN9.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-136x136-3WX3a.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-260x156-5GLPx.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-pgETy.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fczJB.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9seWT.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-wZDz0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fQWmi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-x1Kc0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-TZba1.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9BUzz.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-iA29C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-OWTE0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9sIUv.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-tfE7f.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-AYepv.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55dd6a85-24f0-438a-8723-1ea40a141f38-1180x660-Io87q.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Plugin Compatible \",\"Responsive Layout\",\"Customizer\"],\"created\":\"2015-08-26 02:03:32\",\"created_timestamp\":1440576212,\"demo_url\":\"https:\\/\\/solstice.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"55e0a4cb-394c-4af9-b480-01610a141f37\",\"name\":\"Amiable A WordPress Blogging Theme\",\"slug\":\"amiable-a-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amiable-a-wordpress-blogging-theme\",\"sales_count\":764,\"is_service\":false,\"rating\":5,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, clean, modern, WordPress, blog, fashion, retina, food, mobile, photography, minimal, gallery, Slider, personal, magazine, news, simple, travel, blogging, video, theme, support\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-368x296-YUEWQ.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-136x136-0T1lk.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-260x156-c46rC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-s9CU7.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-Y49gi.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-M5MTN.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55e0a4cb-394c-4af9-b480-01610a141f37-1180x660-nRwUj.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Responsive Layout\",\"Clean and Professional Design\",\"Easy to Set Up\"],\"created\":\"2015-08-28 13:07:12\",\"created_timestamp\":1440788832,\"demo_url\":\"http:\\/\\/amiable.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"544f515e-80bc-4880-a17d-56cc0a141528\",\"name\":\"Credence A Wonderful Multi-Purpose WordPress Theme\",\"slug\":\"credence-a-wonderful-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/credence-a-wonderful-multi-purpose-wordpress-theme\",\"sales_count\":756,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"sh-themes\",\"seller_url\":\"store\\/sh-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, WordPress, news, modern, premium, woocommerce, multipurpose, photography, customizable, church, wpml, Multisite, exclusive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-136x136-90nsF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-260x156-nRhu9.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-544f515e-80bc-4880-a17d-56cc0a141528-1800x1800-qpHxv.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-544f515e-80bc-4880-a17d-56cc0a141528-1180x660-zkSx1.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive, Retina Ready\",\"The Most Powerful Features\",\"Unlimited Design Possibilities\"],\"created\":\"2014-10-28 02:38:39\",\"created_timestamp\":1414485519,\"demo_url\":\"http:\\/\\/demo.sh-themes.com\\/credence\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"18a26bdf8bc503c3f2795bd133d51873\"},{\"id\":\"55b4af45-6248-4025-846b-39650a141f38\",\"name\":\"Semplice An Elegant WordPress Blogging Theme\",\"slug\":\"semplice-an-elegant-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/semplice-an-elegant-wordpress-blogging-theme\",\"sales_count\":743,\"is_service\":false,\"rating\":4.2,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"Slider, music, creative, gallery, grid, personal, retina, facebook, fashion, video, beauty, instagram, lifestyle, clean, responsive, blog\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b4af45-6248-4025-846b-39650a141f38-368x296-HQfZe.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b4af45-6248-4025-846b-39650a141f38-VBSIh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b4af45-6248-4025-846b-39650a141f38-kG44U.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-R9zHx.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-rzpoq.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b4af45-6248-4025-846b-39650a141f38-DnvmC.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Powerful Admin Panel\",\"Responsive Layout\",\"Clean and professional design\"],\"created\":\"2015-07-26 05:11:26\",\"created_timestamp\":1437909086,\"demo_url\":\"http:\\/\\/semplice.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"57d18606-e938-4cf2-b0af-4c780a14153a\",\"name\":\"Blogger Clean and Minimal WordPress Theme for Blog\",\"slug\":\"blogger-clean-and-minimal-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/blogger-clean-and-minimal-wordpress-theme-for-blog\",\"sales_count\":666,\"is_service\":false,\"rating\":4,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"news, simple, elegant, travel, wordpress theme, blogging, Blog WordPress Themes, wordpress templates, wordpress themes, portfolio, minimal, gallery, clean, responsive, blog, WordPress, creative, photography, fashion, multipurpose, personal, magazine\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-SpauU.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-RtbC3.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57d18606-e938-4cf2-b0af-4c780a14153a-Ks7Xi.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57d18606-e938-4cf2-b0af-4c780a14153a-F1uTT.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Fully Responsive\",\"Easy to Use and Install\",\"Multiple Blog Layouts\"],\"created\":\"2016-09-08 09:39:26\",\"created_timestamp\":1473349166,\"demo_url\":\"http:\\/\\/gbthemes.net\\/blogger\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"528b47c8-7fc4-4ad5-a1e9-39980a140b24\",\"name\":\"Trias Multi-Style Corporate WordPress Theme\",\"slug\":\"trias-multi-style-corporate-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/trias-multi-style-corporate-wordpress-theme\",\"sales_count\":663,\"is_service\":false,\"rating\":2.5,\"seller_name\":\"CodexThemes\",\"seller_url\":\"\",\"tags\":\"clean, responsive, portfolio, Business, Corporate, design, creative, products, agency, template, marketing, projects, service, style, consulting\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-528b47c8-7fc4-4ad5-a1e9-39980a140b24-screenshot-mm-resize-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-528b47c8-7fc4-4ad5-a1e9-39980a140b24-prev-mm-resize-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"psd_files\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"100% Responsive &amp; Mobile Ready\",\"Homepage Constructor \",\"Unlimited colors\"],\"created\":\"2013-11-19 05:00:41\",\"created_timestamp\":1384862441,\"demo_url\":\"http:\\/\\/codex-themes.com\\/trias\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"44b134143c71bcded094a8c3c2c3def1\"},{\"id\":\"54d0ee9c-6544-4bcd-abc2-70e40a141528\",\"name\":\"ZenBlog Lovely WordPress Theme for Blog\",\"slug\":\"zenblog-lovely-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zenblog-lovely-wordpress-theme-for-blog\",\"sales_count\":649,\"is_service\":false,\"rating\":5,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"personal, blogging, simple wordpress theme, blog, responsive, modern, photography, creative, clean, wordpress theme, wordpress template, fashion, minimal, seo, mobile\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-368x296-rxsEu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-136x136-l3tMq.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-260x156-tOGvX.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54d0ee9c-6544-4bcd-abc2-70e40a141528-1800x1800-MthMx.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54d0ee9c-6544-4bcd-abc2-70e40a141528-WSCQ3.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Powerful Admin Panel\",\"Responsive Layout\"],\"created\":\"2015-02-03 08:57:43\",\"created_timestamp\":1422979063,\"demo_url\":\"http:\\/\\/gbthemes.net\\/zenblog\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"5187560e-4164-4925-9eb3-77c20a140b1e\",\"name\":\"BlueBird  Beautiful WordPress Theme for Personal Blog\",\"slug\":\"bluebird-beautiful-wordpress-theme-for-personal-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bluebird-beautiful-wordpress-theme-for-personal-blog\",\"sales_count\":590,\"is_service\":false,\"rating\":0,\"seller_name\":\"justgoodthemes\",\"seller_url\":\"store\\/just-good-themes\",\"tags\":\"lifestyle, clean, simple, responsive, blog, minimal, WordPress, jQuery, blue, HTML5, food, elegant, personal, blogging, Free Installation Service, retina, beautiful, tabs, classic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-368x296-Xt1nC.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-136x136-uV7Iw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-260x156-l7RPT.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5187560e-4164-4925-9eb3-77c20a140b1e-1800x1800-FdkGn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5187560e-4164-4925-9eb3-77c20a140b1e-kY6QR.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Custom page templates for full-width pages and blog archives\",\"Responsive layout\",\"Retina ready \\u2013 all icons are optimized for retina devices\"],\"created\":\"2013-05-06 01:18:38\",\"created_timestamp\":1367824718,\"demo_url\":\"https:\\/\\/justgoodthemes.net\\/bluebird\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"61db66e9c23bb2cea94225f065516187\"}],\"page\":1,\"pageCount\":49,\"records\":972}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"kmt8qrudmm8anpja0ugd223gk6\";s:7:\"expires\";i:1501904929;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:49901:\"{\"status\":\"success\",\"items\":[{\"id\":\"5377b431-d8a8-431b-a711-50c10a141528\",\"name\":\"Highend Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"highend-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/highend-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":26961,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"video, galleries, restaurant, coach, parallax, seo, church, real estate, store, landing page, presentation, photography, minimal, WordPress, responsive, Corporate, Business, Drag and Drop Page Builder, shop, woocommerce, blog, portfolio, gallery, modern, clean, Slider\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5377b431-d8a8-431b-a711-50c10a141528-368x296-95lrK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-590111d8-1938-4c59-907f-19d10a141539-GuDbh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-590111d8-1938-4c59-907f-19d10a141539-T3LLc.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-ptl5s.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-QYQHF.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-800gn.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-D54Pg.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-UCmVZ.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5952d5e7-5f64-4a8b-b93a-1bc00a14153b-CzvQB.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive - Mobile Ready\",\"WooCommerce - Build Your Online Shop\",\"Drag &amp; Drop Page Builder\"],\"created\":\"2014-05-17 14:11:49\",\"created_timestamp\":1400357509,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/highend\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"518048d9-ae08-4939-93ac-0a000a140b1e\",\"name\":\"Creativo 6 Responsive Multi-Purpose WordPress Theme\",\"slug\":\"creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"sales_count\":11573,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, blog, Business, clean, modern, portfolio, creative, HTML5, agency, church, coach, page builder\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-368x296-wh0MK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-136x136-Ap575.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-260x156-ejN1Y.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-igiIT.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-ksXYf.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-EmrSF.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-bs4oQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-AImHx.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-xCNaq.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cyImm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cYsfQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-aINqv.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-1QYDb.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-mhnvB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-dQ1yf.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-neWr1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-PpC6f.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-nmFCK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i2occ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i3hhe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-yuBJ1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-LEwG8.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-vVopz.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-RWrTA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-r67bK.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58e292b7-d944-4114-a587-517c0a14153a-NWw73.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Drag and Drop Page Builder\",\"Responsive Design and Retina Ready\",\"Ecommerce Ready - Works with WooCommerce\"],\"created\":\"2013-04-30 17:03:15\",\"created_timestamp\":1367362995,\"demo_url\":\"https:\\/\\/rockythemes.com\\/creativo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"55f82a3d-0ab8-49c6-a224-1a220a141f38\",\"name\":\"Daisy Simple &amp; Minimal WordPress Blog\",\"slug\":\"daisy-simple-amp-minimal-wordpress-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/daisy-simple-amp-minimal-wordpress-blog\",\"sales_count\":3750,\"is_service\":false,\"rating\":5,\"seller_name\":\"LazaThemes\",\"seller_url\":\"store\\/lazathemes\",\"tags\":\"responsive, blog, minimal, personal, blogging, bootstrap\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-136x136-z6jqO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-260x156-ElBpX.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55f82a3d-0ab8-49c6-a224-1a220a141f38-1800x1800-iX4uf.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55f82a3d-0ab8-49c6-a224-1a220a141f38-ldV0Y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Easy to set up\",\"Clean and professional design\",\"Responsive Layout\"],\"created\":\"2015-09-15 08:37:14\",\"created_timestamp\":1442327834,\"demo_url\":\"http:\\/\\/lazathemes.com\\/demo\\/daisy-wp\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4f7a79714aaca6efc0ce4f7c933538cc\"},{\"id\":\"53a6de8b-9098-40bf-a57d-718e0a141528\",\"name\":\"Birch A Responsive WordPress Theme\",\"slug\":\"birch-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/birch-a-responsive-wordpress-theme\",\"sales_count\":2479,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"translation, tablet, iphone, photography, seo, retina, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, eco, service, natural, agriculture, bio, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, travel, modern, creative, woocommerce, mobile, multipurpose, ipad\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-368x296-gh5uf.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-136x136-GjY4S.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-260x156-aZts2.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-5fL3L.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-7s31Z.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-XeafI.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-611h4.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-YtsTh.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-LuRcX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-tilmc.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-wGrWo.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-QNS9l.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-9DbiX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-0wjF6.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53a6de8b-9098-40bf-a57d-718e0a141528-1180x660-tS7VZ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"SEO Ready\",\"Powerful Admin Panel\",\"Responsive Design\"],\"created\":\"2014-06-22 08:00:22\",\"created_timestamp\":1403445622,\"demo_url\":\"https:\\/\\/birch.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"5444f3ed-49bc-4484-9264-0f5c0a140b28\",\"name\":\"Zephyr A Beautiful WordPress Blog Theme\",\"slug\":\"zephyr-a-beautiful-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zephyr-a-beautiful-wordpress-blog-theme\",\"sales_count\":1513,\"is_service\":false,\"rating\":4.9,\"seller_name\":\"themeflame\",\"seller_url\":\"store\\/themeflame\",\"tags\":\"travel wordpress theme, Food Blog, instagram, responsive, beautiful, clean, beautiful design, modern, WordPress, HTML5, CSS3, fashion, agency, personal, Slider, news, retina, restaurant, minimal, multipurpose, design, elegant, flat, simple, Blog WordPress Themes, Blogger, Grid Blog, photoblog, personal blog, wordpress blog theme, photography blog, blog modern, health, wordpress blog, fashion blog, pretty blog, clean blog, blogging theme, family, theme, blogging wordpress theme, minimalist, wordpress themes, minimal design, simple wordpress theme, personal blog theme, wordpress theme, Personal WordPress Theme, wordpress templates, Personal WordPress Themes, wordpress mobile, personal site, food theme, blog minimal, mommy, seo, fashion theme, customizer, fashion template, layouts, foodie, fashionista, travel, blog, blogging, travelling blog, food\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-368x296-8Di6N.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-136x136-zMAwr.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-260x156-PQ45k.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5444f3ed-49bc-4484-9264-0f5c0a140b28-1800x1800-TtFpS.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5444f3ed-49bc-4484-9264-0f5c0a140b28-1180x660-S6J6V.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Blog and Portfolio Page\",\"Responsive Layout\"],\"created\":\"2014-10-20 06:11:25\",\"created_timestamp\":1413807085,\"demo_url\":\"http:\\/\\/themeflame.com\\/zephyr\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"13f401b35fbfa320cf306a891828f876\"},{\"id\":\"5659d4bf-6b80-434a-b566-64870a141f38\",\"name\":\"FREYJA Personal WordPress Theme for Bloggers\",\"slug\":\"freyja-personal-wordpress-theme-for-bloggers\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/freyja-personal-wordpress-theme-for-bloggers\",\"sales_count\":1432,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"SparrowAndSnow\",\"seller_url\":\"store\\/sparrow-and-snow\",\"tags\":\"audio, instagram, lifestyle, clean, simple, responsive, travel, food, elegant, design, modern, creative, easy, gallery, personal, fashion, photographer, video, Blogger\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58fe8554-6868-418f-a6ed-69a80a141539-6bIxM.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5659d4bf-6b80-434a-b566-64870a141f38-ch13X.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-zo4DU.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-6Vq6I.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-uoyC5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-mqENt.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-yl6Bs.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-EycmZ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-w5O3O.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58fe8554-6868-418f-a6ed-69a80a141539-nWtg4.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"10 Blog Layout\",\"Retina Ready\",\"Translation Ready\"],\"created\":\"2015-11-28 09:23:17\",\"created_timestamp\":1448727797,\"demo_url\":\"http:\\/\\/sparrowandsnow.com\\/freyja\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be9598299f6d395d43fa63d9ec92b3f1\"},{\"id\":\"51803aa2-7ec8-4ff0-b206-09fb0a140b1e\",\"name\":\"Aegaeus Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"aegaeus-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aegaeus-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1380,\"is_service\":false,\"rating\":3.9,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, Corporate, shop, magazine, news, design, music, modern, support, woocommerce, mobile, gallery, multipurpose, brankocee, ipad, agency, light, iphone, photography, white, videos, company, megamenu, sticky\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-368x296-KcSoi.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-136x136-gxRF6.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-260x156-J3rcd.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot1-mm-resize-1546x1800.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1800x1800-Hijw4.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot_1800-mm-resize-1800x857.jpg\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot2-mm-resize-1546x1800.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1180x660-CugyQ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Unlimited Colors\",\"Translation Ready\",\"WordPress 3.5+ Ready\"],\"created\":\"2013-04-30 15:50:55\",\"created_timestamp\":1367358655,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/aegaeus_wp\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"55233c6f-c31c-4ab8-8023-0d350a141f3c\",\"name\":\"Wunderful Clean &amp; Minimal WordPress Blog Theme\",\"slug\":\"wunderful-clean-amp-minimal-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wunderful-clean-amp-minimal-wordpress-blog-theme\",\"sales_count\":1376,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeDsgn\",\"seller_url\":\"store\\/themedsgn\",\"tags\":\"clean, simple, responsive, blog, minimal, WordPress, travel, music, modern, woocommerce, personal, blogging, fashion, recipe\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-136x136-8XtlH.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-260x156-B9ll6.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55233c6f-c31c-4ab8-8023-0d350a141f3c-1180x660-Rk6wt.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean, Elegant &amp; Responsive Layout\",\"Easy to Install &amp; Setup\",\"Suitable for Any Blog\"],\"created\":\"2015-04-06 20:44:54\",\"created_timestamp\":1428374694,\"demo_url\":\"http:\\/\\/themes.themedsgn.com\\/wunderful\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"6a91f75d7b640a42445fafc86a421ac1\"},{\"id\":\"53589542-c8f4-491e-ad1e-29c90a141528\",\"name\":\"Nectar A Responsive WordPress Theme\",\"slug\":\"nectar-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nectar-a-responsive-wordpress-theme\",\"sales_count\":1374,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, photography, seo, retina, fashion, Custom, startup, Fitness, church, office, cafe, environmental, sports, eco, service, organic, natural, customize, agriculture, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, Green, travel, modern\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-368x296-BWaK1.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-136x136-0pPAV.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-MZJXd.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-WwuAA.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-rVJ4N.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YWsAd.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-qGPwW.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-JMt5C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YSJik.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-2hEmp.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-ZMB1W.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-B6hX8.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53589542-c8f4-491e-ad1e-29c90a141528-1180x660-oTokc.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean and Modern\",\"WooCommerce\",\"Responsive Design\"],\"created\":\"2014-04-23 23:04:45\",\"created_timestamp\":1398315885,\"demo_url\":\"https:\\/\\/nectar.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"54626dc3-c4d8-40b3-b441-3ff60a141528\",\"name\":\"Nimva Ultimate Multi Purpose WordPress Theme\",\"slug\":\"nimva-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nimva-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1348,\"is_service\":false,\"rating\":5,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, Business, clean, minimal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-136x136-7Bg7b.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-260x156-Vucki.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-UomN2.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-FYTxh.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-WktDL.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-rlk5m.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-8RwBo.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-3DFLY.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54626dc3-c4d8-40b3-b441-3ff60a141528-1180x660-uEBMb.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Powerful Admin Panel\",\"Retina Ready\",\"Drag and Drop Visual Composer elements\"],\"created\":\"2014-11-11 14:27:09\",\"created_timestamp\":1415741229,\"demo_url\":\"http:\\/\\/rockythemes.com\\/nimva\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"57c43604-3e40-4824-9219-1cc70a14153b\",\"name\":\"The Core Multi-Purpose WordPress Theme\",\"slug\":\"the-core-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/the-core-multi-purpose-wordpress-theme\",\"sales_count\":1317,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeFuse\",\"seller_url\":\"store\\/themefuse\",\"tags\":\"catering, events, kindergarten, architecture, lawyers, responsive, blog, Business, WordPress, Corporate, medical, magazine, restaurant, creative, agency, charity, bakery, cleaning, wedding, church\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57c43604-3e40-4824-9219-1cc70a14153b-KHmWi.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5928264a-c4f8-4dcc-91d9-56040a141539-HFsZg.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5928264a-c4f8-4dcc-91d9-56040a141539-mXR7A.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57c43604-3e40-4824-9219-1cc70a14153b-vgV3U.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5928264a-c4f8-4dcc-91d9-56040a141539-zQKuI.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"20 Website Demos Included (more to come for FREE)\",\"1 Click  Demo Install\",\"Visual Page Builder\"],\"created\":\"2016-08-29 07:18:34\",\"created_timestamp\":1472476714,\"demo_url\":\"https:\\/\\/demo.themefuse.com\\/the-core\\/?market_referrer=mojo\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fe54e73e29cac33917ee48ab110b9bef\"},{\"id\":\"532798c5-2834-440b-8469-255a0a141528\",\"name\":\"Creative Blog WordPress Theme\",\"slug\":\"creative-blog-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creative-blog-wordpress-theme\",\"sales_count\":1125,\"is_service\":false,\"rating\":3,\"seller_name\":\"DessignThemes\",\"seller_url\":\"store\\/dessign-themes\",\"tags\":\"portfolio, blog, photography\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-532798c5-2834-440b-8469-255a0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-532798c5-2834-440b-8469-255a0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-532798c5-2834-440b-8469-255a0a141528-260x156.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/screen_shots-532798c5-2834-440b-8469-255a0a141528-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-532798c5-2834-440b-8469-255a0a141528-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Responsive Layout\",\"Slider Video Feature\",\"Theme Options panel\"],\"created\":\"2014-03-17 19:15:51\",\"created_timestamp\":1395105351,\"demo_url\":\"http:\\/\\/www.dessign.net\\/creativeblogtheme\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"12a1f004a6ed51582a3f0de432cf020d\"},{\"id\":\"55dd6a85-24f0-438a-8723-1ea40a141f38\",\"name\":\"Solstice Elegant WordPress Theme\",\"slug\":\"solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"sales_count\":1057,\"is_service\":false,\"rating\":5,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"responsive, portfolio, blog, minimal, Business, WordPress, travel, modern, creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, iphone, photography, seo, retina, customizer, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, service, natural, customize, agriculture, bio, clean\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-368x296-czJN9.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-136x136-3WX3a.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-260x156-5GLPx.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-pgETy.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fczJB.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9seWT.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-wZDz0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fQWmi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-x1Kc0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-TZba1.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9BUzz.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-iA29C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-OWTE0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9sIUv.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-tfE7f.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-AYepv.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55dd6a85-24f0-438a-8723-1ea40a141f38-1180x660-Io87q.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Plugin Compatible \",\"Responsive Layout\",\"Customizer\"],\"created\":\"2015-08-26 02:03:32\",\"created_timestamp\":1440576212,\"demo_url\":\"https:\\/\\/solstice.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"55e0a4cb-394c-4af9-b480-01610a141f37\",\"name\":\"Amiable A WordPress Blogging Theme\",\"slug\":\"amiable-a-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amiable-a-wordpress-blogging-theme\",\"sales_count\":764,\"is_service\":false,\"rating\":5,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, clean, modern, WordPress, blog, fashion, retina, food, mobile, photography, minimal, gallery, Slider, personal, magazine, news, simple, travel, blogging, video, theme, support\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-368x296-YUEWQ.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-136x136-0T1lk.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-260x156-c46rC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-s9CU7.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-Y49gi.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-M5MTN.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55e0a4cb-394c-4af9-b480-01610a141f37-1180x660-nRwUj.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Responsive Layout\",\"Clean and Professional Design\",\"Easy to Set Up\"],\"created\":\"2015-08-28 13:07:12\",\"created_timestamp\":1440788832,\"demo_url\":\"http:\\/\\/amiable.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"544f515e-80bc-4880-a17d-56cc0a141528\",\"name\":\"Credence A Wonderful Multi-Purpose WordPress Theme\",\"slug\":\"credence-a-wonderful-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/credence-a-wonderful-multi-purpose-wordpress-theme\",\"sales_count\":756,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"sh-themes\",\"seller_url\":\"store\\/sh-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, WordPress, news, modern, premium, woocommerce, multipurpose, photography, customizable, church, wpml, Multisite, exclusive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-136x136-90nsF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-260x156-nRhu9.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-544f515e-80bc-4880-a17d-56cc0a141528-1800x1800-qpHxv.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-544f515e-80bc-4880-a17d-56cc0a141528-1180x660-zkSx1.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive, Retina Ready\",\"The Most Powerful Features\",\"Unlimited Design Possibilities\"],\"created\":\"2014-10-28 02:38:39\",\"created_timestamp\":1414485519,\"demo_url\":\"http:\\/\\/demo.sh-themes.com\\/credence\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"18a26bdf8bc503c3f2795bd133d51873\"},{\"id\":\"55b4af45-6248-4025-846b-39650a141f38\",\"name\":\"Semplice An Elegant WordPress Blogging Theme\",\"slug\":\"semplice-an-elegant-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/semplice-an-elegant-wordpress-blogging-theme\",\"sales_count\":743,\"is_service\":false,\"rating\":4.2,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"Slider, music, creative, gallery, grid, personal, retina, facebook, fashion, video, beauty, instagram, lifestyle, clean, responsive, blog\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b4af45-6248-4025-846b-39650a141f38-368x296-HQfZe.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b4af45-6248-4025-846b-39650a141f38-VBSIh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b4af45-6248-4025-846b-39650a141f38-kG44U.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-R9zHx.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-rzpoq.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b4af45-6248-4025-846b-39650a141f38-DnvmC.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Powerful Admin Panel\",\"Responsive Layout\",\"Clean and professional design\"],\"created\":\"2015-07-26 05:11:26\",\"created_timestamp\":1437909086,\"demo_url\":\"http:\\/\\/semplice.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"57d18606-e938-4cf2-b0af-4c780a14153a\",\"name\":\"Blogger Clean and Minimal WordPress Theme for Blog\",\"slug\":\"blogger-clean-and-minimal-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/blogger-clean-and-minimal-wordpress-theme-for-blog\",\"sales_count\":666,\"is_service\":false,\"rating\":4,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"news, simple, elegant, travel, wordpress theme, blogging, Blog WordPress Themes, wordpress templates, wordpress themes, portfolio, minimal, gallery, clean, responsive, blog, WordPress, creative, photography, fashion, multipurpose, personal, magazine\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-SpauU.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-RtbC3.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57d18606-e938-4cf2-b0af-4c780a14153a-Ks7Xi.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57d18606-e938-4cf2-b0af-4c780a14153a-F1uTT.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Fully Responsive\",\"Easy to Use and Install\",\"Multiple Blog Layouts\"],\"created\":\"2016-09-08 09:39:26\",\"created_timestamp\":1473349166,\"demo_url\":\"http:\\/\\/gbthemes.net\\/blogger\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"528b47c8-7fc4-4ad5-a1e9-39980a140b24\",\"name\":\"Trias Multi-Style Corporate WordPress Theme\",\"slug\":\"trias-multi-style-corporate-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/trias-multi-style-corporate-wordpress-theme\",\"sales_count\":663,\"is_service\":false,\"rating\":2.5,\"seller_name\":\"CodexThemes\",\"seller_url\":\"\",\"tags\":\"clean, responsive, portfolio, Business, Corporate, design, creative, products, agency, template, marketing, projects, service, style, consulting\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-528b47c8-7fc4-4ad5-a1e9-39980a140b24-screenshot-mm-resize-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-528b47c8-7fc4-4ad5-a1e9-39980a140b24-prev-mm-resize-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"psd_files\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"100% Responsive &amp; Mobile Ready\",\"Homepage Constructor \",\"Unlimited colors\"],\"created\":\"2013-11-19 05:00:41\",\"created_timestamp\":1384862441,\"demo_url\":\"http:\\/\\/codex-themes.com\\/trias\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"44b134143c71bcded094a8c3c2c3def1\"},{\"id\":\"54d0ee9c-6544-4bcd-abc2-70e40a141528\",\"name\":\"ZenBlog Lovely WordPress Theme for Blog\",\"slug\":\"zenblog-lovely-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zenblog-lovely-wordpress-theme-for-blog\",\"sales_count\":649,\"is_service\":false,\"rating\":5,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"personal, blogging, simple wordpress theme, blog, responsive, modern, photography, creative, clean, wordpress theme, wordpress template, fashion, minimal, seo, mobile\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-368x296-rxsEu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-136x136-l3tMq.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-260x156-tOGvX.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54d0ee9c-6544-4bcd-abc2-70e40a141528-1800x1800-MthMx.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54d0ee9c-6544-4bcd-abc2-70e40a141528-WSCQ3.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Powerful Admin Panel\",\"Responsive Layout\"],\"created\":\"2015-02-03 08:57:43\",\"created_timestamp\":1422979063,\"demo_url\":\"http:\\/\\/gbthemes.net\\/zenblog\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"5187560e-4164-4925-9eb3-77c20a140b1e\",\"name\":\"BlueBird  Beautiful WordPress Theme for Personal Blog\",\"slug\":\"bluebird-beautiful-wordpress-theme-for-personal-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bluebird-beautiful-wordpress-theme-for-personal-blog\",\"sales_count\":590,\"is_service\":false,\"rating\":0,\"seller_name\":\"justgoodthemes\",\"seller_url\":\"store\\/just-good-themes\",\"tags\":\"lifestyle, clean, simple, responsive, blog, minimal, WordPress, jQuery, blue, HTML5, food, elegant, personal, blogging, Free Installation Service, retina, beautiful, tabs, classic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-368x296-Xt1nC.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-136x136-uV7Iw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-260x156-l7RPT.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5187560e-4164-4925-9eb3-77c20a140b1e-1800x1800-FdkGn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5187560e-4164-4925-9eb3-77c20a140b1e-kY6QR.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Custom page templates for full-width pages and blog archives\",\"Responsive layout\",\"Retina ready \\u2013 all icons are optimized for retina devices\"],\"created\":\"2013-05-06 01:18:38\",\"created_timestamp\":1367824718,\"demo_url\":\"https:\\/\\/justgoodthemes.net\\/bluebird\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"61db66e9c23bb2cea94225f065516187\"}],\"page\":1,\"pageCount\":49,\"records\":972}\";s:3:\"raw\";s:50303:\"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nCache-Control: 900\r\nContent-Type: application/json; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:48:49 GMT\r\nServer: nginx/1.12.0\r\nSet-Cookie: SESSION=kmt8qrudmm8anpja0ugd223gk6; expires=Sat, 05-Aug-2017 03:48:49 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\r\nX-Powered-By: PHP/5.6.30\r\nContent-Length: 49901\r\nConnection: Close\r\n\r\n{\"status\":\"success\",\"items\":[{\"id\":\"5377b431-d8a8-431b-a711-50c10a141528\",\"name\":\"Highend Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"highend-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/highend-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":26961,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"video, galleries, restaurant, coach, parallax, seo, church, real estate, store, landing page, presentation, photography, minimal, WordPress, responsive, Corporate, Business, Drag and Drop Page Builder, shop, woocommerce, blog, portfolio, gallery, modern, clean, Slider\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5377b431-d8a8-431b-a711-50c10a141528-368x296-95lrK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-590111d8-1938-4c59-907f-19d10a141539-GuDbh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-590111d8-1938-4c59-907f-19d10a141539-T3LLc.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-ptl5s.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-QYQHF.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-800gn.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-D54Pg.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-UCmVZ.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5952d5e7-5f64-4a8b-b93a-1bc00a14153b-CzvQB.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive - Mobile Ready\",\"WooCommerce - Build Your Online Shop\",\"Drag &amp; Drop Page Builder\"],\"created\":\"2014-05-17 14:11:49\",\"created_timestamp\":1400357509,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/highend\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"518048d9-ae08-4939-93ac-0a000a140b1e\",\"name\":\"Creativo 6 Responsive Multi-Purpose WordPress Theme\",\"slug\":\"creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"sales_count\":11573,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, blog, Business, clean, modern, portfolio, creative, HTML5, agency, church, coach, page builder\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-368x296-wh0MK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-136x136-Ap575.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-260x156-ejN1Y.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-igiIT.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-ksXYf.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-EmrSF.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-bs4oQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-AImHx.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-xCNaq.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cyImm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cYsfQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-aINqv.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-1QYDb.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-mhnvB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-dQ1yf.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-neWr1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-PpC6f.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-nmFCK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i2occ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i3hhe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-yuBJ1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-LEwG8.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-vVopz.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-RWrTA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-r67bK.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58e292b7-d944-4114-a587-517c0a14153a-NWw73.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Drag and Drop Page Builder\",\"Responsive Design and Retina Ready\",\"Ecommerce Ready - Works with WooCommerce\"],\"created\":\"2013-04-30 17:03:15\",\"created_timestamp\":1367362995,\"demo_url\":\"https:\\/\\/rockythemes.com\\/creativo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"55f82a3d-0ab8-49c6-a224-1a220a141f38\",\"name\":\"Daisy Simple &amp; Minimal WordPress Blog\",\"slug\":\"daisy-simple-amp-minimal-wordpress-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/daisy-simple-amp-minimal-wordpress-blog\",\"sales_count\":3750,\"is_service\":false,\"rating\":5,\"seller_name\":\"LazaThemes\",\"seller_url\":\"store\\/lazathemes\",\"tags\":\"responsive, blog, minimal, personal, blogging, bootstrap\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-136x136-z6jqO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-260x156-ElBpX.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55f82a3d-0ab8-49c6-a224-1a220a141f38-1800x1800-iX4uf.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55f82a3d-0ab8-49c6-a224-1a220a141f38-ldV0Y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Easy to set up\",\"Clean and professional design\",\"Responsive Layout\"],\"created\":\"2015-09-15 08:37:14\",\"created_timestamp\":1442327834,\"demo_url\":\"http:\\/\\/lazathemes.com\\/demo\\/daisy-wp\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4f7a79714aaca6efc0ce4f7c933538cc\"},{\"id\":\"53a6de8b-9098-40bf-a57d-718e0a141528\",\"name\":\"Birch A Responsive WordPress Theme\",\"slug\":\"birch-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/birch-a-responsive-wordpress-theme\",\"sales_count\":2479,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"translation, tablet, iphone, photography, seo, retina, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, eco, service, natural, agriculture, bio, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, travel, modern, creative, woocommerce, mobile, multipurpose, ipad\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-368x296-gh5uf.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-136x136-GjY4S.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-260x156-aZts2.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-5fL3L.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-7s31Z.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-XeafI.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-611h4.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-YtsTh.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-LuRcX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-tilmc.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-wGrWo.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-QNS9l.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-9DbiX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-0wjF6.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53a6de8b-9098-40bf-a57d-718e0a141528-1180x660-tS7VZ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"SEO Ready\",\"Powerful Admin Panel\",\"Responsive Design\"],\"created\":\"2014-06-22 08:00:22\",\"created_timestamp\":1403445622,\"demo_url\":\"https:\\/\\/birch.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"5444f3ed-49bc-4484-9264-0f5c0a140b28\",\"name\":\"Zephyr A Beautiful WordPress Blog Theme\",\"slug\":\"zephyr-a-beautiful-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zephyr-a-beautiful-wordpress-blog-theme\",\"sales_count\":1513,\"is_service\":false,\"rating\":4.9,\"seller_name\":\"themeflame\",\"seller_url\":\"store\\/themeflame\",\"tags\":\"travel wordpress theme, Food Blog, instagram, responsive, beautiful, clean, beautiful design, modern, WordPress, HTML5, CSS3, fashion, agency, personal, Slider, news, retina, restaurant, minimal, multipurpose, design, elegant, flat, simple, Blog WordPress Themes, Blogger, Grid Blog, photoblog, personal blog, wordpress blog theme, photography blog, blog modern, health, wordpress blog, fashion blog, pretty blog, clean blog, blogging theme, family, theme, blogging wordpress theme, minimalist, wordpress themes, minimal design, simple wordpress theme, personal blog theme, wordpress theme, Personal WordPress Theme, wordpress templates, Personal WordPress Themes, wordpress mobile, personal site, food theme, blog minimal, mommy, seo, fashion theme, customizer, fashion template, layouts, foodie, fashionista, travel, blog, blogging, travelling blog, food\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-368x296-8Di6N.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-136x136-zMAwr.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-260x156-PQ45k.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5444f3ed-49bc-4484-9264-0f5c0a140b28-1800x1800-TtFpS.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5444f3ed-49bc-4484-9264-0f5c0a140b28-1180x660-S6J6V.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Blog and Portfolio Page\",\"Responsive Layout\"],\"created\":\"2014-10-20 06:11:25\",\"created_timestamp\":1413807085,\"demo_url\":\"http:\\/\\/themeflame.com\\/zephyr\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"13f401b35fbfa320cf306a891828f876\"},{\"id\":\"5659d4bf-6b80-434a-b566-64870a141f38\",\"name\":\"FREYJA Personal WordPress Theme for Bloggers\",\"slug\":\"freyja-personal-wordpress-theme-for-bloggers\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/freyja-personal-wordpress-theme-for-bloggers\",\"sales_count\":1432,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"SparrowAndSnow\",\"seller_url\":\"store\\/sparrow-and-snow\",\"tags\":\"audio, instagram, lifestyle, clean, simple, responsive, travel, food, elegant, design, modern, creative, easy, gallery, personal, fashion, photographer, video, Blogger\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58fe8554-6868-418f-a6ed-69a80a141539-6bIxM.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5659d4bf-6b80-434a-b566-64870a141f38-ch13X.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-zo4DU.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-6Vq6I.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-uoyC5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-mqENt.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-yl6Bs.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-EycmZ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-w5O3O.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58fe8554-6868-418f-a6ed-69a80a141539-nWtg4.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"10 Blog Layout\",\"Retina Ready\",\"Translation Ready\"],\"created\":\"2015-11-28 09:23:17\",\"created_timestamp\":1448727797,\"demo_url\":\"http:\\/\\/sparrowandsnow.com\\/freyja\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be9598299f6d395d43fa63d9ec92b3f1\"},{\"id\":\"51803aa2-7ec8-4ff0-b206-09fb0a140b1e\",\"name\":\"Aegaeus Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"aegaeus-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aegaeus-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1380,\"is_service\":false,\"rating\":3.9,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, Corporate, shop, magazine, news, design, music, modern, support, woocommerce, mobile, gallery, multipurpose, brankocee, ipad, agency, light, iphone, photography, white, videos, company, megamenu, sticky\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-368x296-KcSoi.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-136x136-gxRF6.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-260x156-J3rcd.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot1-mm-resize-1546x1800.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1800x1800-Hijw4.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot_1800-mm-resize-1800x857.jpg\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot2-mm-resize-1546x1800.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1180x660-CugyQ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Unlimited Colors\",\"Translation Ready\",\"WordPress 3.5+ Ready\"],\"created\":\"2013-04-30 15:50:55\",\"created_timestamp\":1367358655,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/aegaeus_wp\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"55233c6f-c31c-4ab8-8023-0d350a141f3c\",\"name\":\"Wunderful Clean &amp; Minimal WordPress Blog Theme\",\"slug\":\"wunderful-clean-amp-minimal-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wunderful-clean-amp-minimal-wordpress-blog-theme\",\"sales_count\":1376,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeDsgn\",\"seller_url\":\"store\\/themedsgn\",\"tags\":\"clean, simple, responsive, blog, minimal, WordPress, travel, music, modern, woocommerce, personal, blogging, fashion, recipe\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-136x136-8XtlH.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-260x156-B9ll6.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55233c6f-c31c-4ab8-8023-0d350a141f3c-1180x660-Rk6wt.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean, Elegant &amp; Responsive Layout\",\"Easy to Install &amp; Setup\",\"Suitable for Any Blog\"],\"created\":\"2015-04-06 20:44:54\",\"created_timestamp\":1428374694,\"demo_url\":\"http:\\/\\/themes.themedsgn.com\\/wunderful\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"6a91f75d7b640a42445fafc86a421ac1\"},{\"id\":\"53589542-c8f4-491e-ad1e-29c90a141528\",\"name\":\"Nectar A Responsive WordPress Theme\",\"slug\":\"nectar-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nectar-a-responsive-wordpress-theme\",\"sales_count\":1374,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, photography, seo, retina, fashion, Custom, startup, Fitness, church, office, cafe, environmental, sports, eco, service, organic, natural, customize, agriculture, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, Green, travel, modern\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-368x296-BWaK1.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-136x136-0pPAV.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-MZJXd.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-WwuAA.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-rVJ4N.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YWsAd.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-qGPwW.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-JMt5C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YSJik.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-2hEmp.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-ZMB1W.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-B6hX8.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53589542-c8f4-491e-ad1e-29c90a141528-1180x660-oTokc.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean and Modern\",\"WooCommerce\",\"Responsive Design\"],\"created\":\"2014-04-23 23:04:45\",\"created_timestamp\":1398315885,\"demo_url\":\"https:\\/\\/nectar.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"54626dc3-c4d8-40b3-b441-3ff60a141528\",\"name\":\"Nimva Ultimate Multi Purpose WordPress Theme\",\"slug\":\"nimva-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nimva-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1348,\"is_service\":false,\"rating\":5,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, Business, clean, minimal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-136x136-7Bg7b.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-260x156-Vucki.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-UomN2.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-FYTxh.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-WktDL.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-rlk5m.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-8RwBo.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-3DFLY.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54626dc3-c4d8-40b3-b441-3ff60a141528-1180x660-uEBMb.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Powerful Admin Panel\",\"Retina Ready\",\"Drag and Drop Visual Composer elements\"],\"created\":\"2014-11-11 14:27:09\",\"created_timestamp\":1415741229,\"demo_url\":\"http:\\/\\/rockythemes.com\\/nimva\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"57c43604-3e40-4824-9219-1cc70a14153b\",\"name\":\"The Core Multi-Purpose WordPress Theme\",\"slug\":\"the-core-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/the-core-multi-purpose-wordpress-theme\",\"sales_count\":1317,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeFuse\",\"seller_url\":\"store\\/themefuse\",\"tags\":\"catering, events, kindergarten, architecture, lawyers, responsive, blog, Business, WordPress, Corporate, medical, magazine, restaurant, creative, agency, charity, bakery, cleaning, wedding, church\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57c43604-3e40-4824-9219-1cc70a14153b-KHmWi.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5928264a-c4f8-4dcc-91d9-56040a141539-HFsZg.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5928264a-c4f8-4dcc-91d9-56040a141539-mXR7A.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57c43604-3e40-4824-9219-1cc70a14153b-vgV3U.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5928264a-c4f8-4dcc-91d9-56040a141539-zQKuI.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"20 Website Demos Included (more to come for FREE)\",\"1 Click  Demo Install\",\"Visual Page Builder\"],\"created\":\"2016-08-29 07:18:34\",\"created_timestamp\":1472476714,\"demo_url\":\"https:\\/\\/demo.themefuse.com\\/the-core\\/?market_referrer=mojo\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fe54e73e29cac33917ee48ab110b9bef\"},{\"id\":\"532798c5-2834-440b-8469-255a0a141528\",\"name\":\"Creative Blog WordPress Theme\",\"slug\":\"creative-blog-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creative-blog-wordpress-theme\",\"sales_count\":1125,\"is_service\":false,\"rating\":3,\"seller_name\":\"DessignThemes\",\"seller_url\":\"store\\/dessign-themes\",\"tags\":\"portfolio, blog, photography\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-532798c5-2834-440b-8469-255a0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-532798c5-2834-440b-8469-255a0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-532798c5-2834-440b-8469-255a0a141528-260x156.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/screen_shots-532798c5-2834-440b-8469-255a0a141528-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-532798c5-2834-440b-8469-255a0a141528-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Responsive Layout\",\"Slider Video Feature\",\"Theme Options panel\"],\"created\":\"2014-03-17 19:15:51\",\"created_timestamp\":1395105351,\"demo_url\":\"http:\\/\\/www.dessign.net\\/creativeblogtheme\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"12a1f004a6ed51582a3f0de432cf020d\"},{\"id\":\"55dd6a85-24f0-438a-8723-1ea40a141f38\",\"name\":\"Solstice Elegant WordPress Theme\",\"slug\":\"solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"sales_count\":1057,\"is_service\":false,\"rating\":5,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"responsive, portfolio, blog, minimal, Business, WordPress, travel, modern, creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, iphone, photography, seo, retina, customizer, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, service, natural, customize, agriculture, bio, clean\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-368x296-czJN9.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-136x136-3WX3a.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-260x156-5GLPx.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-pgETy.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fczJB.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9seWT.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-wZDz0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fQWmi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-x1Kc0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-TZba1.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9BUzz.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-iA29C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-OWTE0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9sIUv.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-tfE7f.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-AYepv.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55dd6a85-24f0-438a-8723-1ea40a141f38-1180x660-Io87q.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Plugin Compatible \",\"Responsive Layout\",\"Customizer\"],\"created\":\"2015-08-26 02:03:32\",\"created_timestamp\":1440576212,\"demo_url\":\"https:\\/\\/solstice.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"55e0a4cb-394c-4af9-b480-01610a141f37\",\"name\":\"Amiable A WordPress Blogging Theme\",\"slug\":\"amiable-a-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amiable-a-wordpress-blogging-theme\",\"sales_count\":764,\"is_service\":false,\"rating\":5,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, clean, modern, WordPress, blog, fashion, retina, food, mobile, photography, minimal, gallery, Slider, personal, magazine, news, simple, travel, blogging, video, theme, support\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-368x296-YUEWQ.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-136x136-0T1lk.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-260x156-c46rC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-s9CU7.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-Y49gi.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-M5MTN.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55e0a4cb-394c-4af9-b480-01610a141f37-1180x660-nRwUj.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Responsive Layout\",\"Clean and Professional Design\",\"Easy to Set Up\"],\"created\":\"2015-08-28 13:07:12\",\"created_timestamp\":1440788832,\"demo_url\":\"http:\\/\\/amiable.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"544f515e-80bc-4880-a17d-56cc0a141528\",\"name\":\"Credence A Wonderful Multi-Purpose WordPress Theme\",\"slug\":\"credence-a-wonderful-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/credence-a-wonderful-multi-purpose-wordpress-theme\",\"sales_count\":756,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"sh-themes\",\"seller_url\":\"store\\/sh-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, WordPress, news, modern, premium, woocommerce, multipurpose, photography, customizable, church, wpml, Multisite, exclusive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-136x136-90nsF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-260x156-nRhu9.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-544f515e-80bc-4880-a17d-56cc0a141528-1800x1800-qpHxv.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-544f515e-80bc-4880-a17d-56cc0a141528-1180x660-zkSx1.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive, Retina Ready\",\"The Most Powerful Features\",\"Unlimited Design Possibilities\"],\"created\":\"2014-10-28 02:38:39\",\"created_timestamp\":1414485519,\"demo_url\":\"http:\\/\\/demo.sh-themes.com\\/credence\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"18a26bdf8bc503c3f2795bd133d51873\"},{\"id\":\"55b4af45-6248-4025-846b-39650a141f38\",\"name\":\"Semplice An Elegant WordPress Blogging Theme\",\"slug\":\"semplice-an-elegant-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/semplice-an-elegant-wordpress-blogging-theme\",\"sales_count\":743,\"is_service\":false,\"rating\":4.2,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"Slider, music, creative, gallery, grid, personal, retina, facebook, fashion, video, beauty, instagram, lifestyle, clean, responsive, blog\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b4af45-6248-4025-846b-39650a141f38-368x296-HQfZe.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b4af45-6248-4025-846b-39650a141f38-VBSIh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b4af45-6248-4025-846b-39650a141f38-kG44U.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-R9zHx.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-rzpoq.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b4af45-6248-4025-846b-39650a141f38-DnvmC.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Powerful Admin Panel\",\"Responsive Layout\",\"Clean and professional design\"],\"created\":\"2015-07-26 05:11:26\",\"created_timestamp\":1437909086,\"demo_url\":\"http:\\/\\/semplice.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"57d18606-e938-4cf2-b0af-4c780a14153a\",\"name\":\"Blogger Clean and Minimal WordPress Theme for Blog\",\"slug\":\"blogger-clean-and-minimal-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/blogger-clean-and-minimal-wordpress-theme-for-blog\",\"sales_count\":666,\"is_service\":false,\"rating\":4,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"news, simple, elegant, travel, wordpress theme, blogging, Blog WordPress Themes, wordpress templates, wordpress themes, portfolio, minimal, gallery, clean, responsive, blog, WordPress, creative, photography, fashion, multipurpose, personal, magazine\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-SpauU.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-RtbC3.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57d18606-e938-4cf2-b0af-4c780a14153a-Ks7Xi.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57d18606-e938-4cf2-b0af-4c780a14153a-F1uTT.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Fully Responsive\",\"Easy to Use and Install\",\"Multiple Blog Layouts\"],\"created\":\"2016-09-08 09:39:26\",\"created_timestamp\":1473349166,\"demo_url\":\"http:\\/\\/gbthemes.net\\/blogger\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"528b47c8-7fc4-4ad5-a1e9-39980a140b24\",\"name\":\"Trias Multi-Style Corporate WordPress Theme\",\"slug\":\"trias-multi-style-corporate-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/trias-multi-style-corporate-wordpress-theme\",\"sales_count\":663,\"is_service\":false,\"rating\":2.5,\"seller_name\":\"CodexThemes\",\"seller_url\":\"\",\"tags\":\"clean, responsive, portfolio, Business, Corporate, design, creative, products, agency, template, marketing, projects, service, style, consulting\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-528b47c8-7fc4-4ad5-a1e9-39980a140b24-screenshot-mm-resize-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-528b47c8-7fc4-4ad5-a1e9-39980a140b24-prev-mm-resize-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"psd_files\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"100% Responsive &amp; Mobile Ready\",\"Homepage Constructor \",\"Unlimited colors\"],\"created\":\"2013-11-19 05:00:41\",\"created_timestamp\":1384862441,\"demo_url\":\"http:\\/\\/codex-themes.com\\/trias\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"44b134143c71bcded094a8c3c2c3def1\"},{\"id\":\"54d0ee9c-6544-4bcd-abc2-70e40a141528\",\"name\":\"ZenBlog Lovely WordPress Theme for Blog\",\"slug\":\"zenblog-lovely-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zenblog-lovely-wordpress-theme-for-blog\",\"sales_count\":649,\"is_service\":false,\"rating\":5,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"personal, blogging, simple wordpress theme, blog, responsive, modern, photography, creative, clean, wordpress theme, wordpress template, fashion, minimal, seo, mobile\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-368x296-rxsEu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-136x136-l3tMq.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-260x156-tOGvX.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54d0ee9c-6544-4bcd-abc2-70e40a141528-1800x1800-MthMx.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54d0ee9c-6544-4bcd-abc2-70e40a141528-WSCQ3.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Powerful Admin Panel\",\"Responsive Layout\"],\"created\":\"2015-02-03 08:57:43\",\"created_timestamp\":1422979063,\"demo_url\":\"http:\\/\\/gbthemes.net\\/zenblog\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"5187560e-4164-4925-9eb3-77c20a140b1e\",\"name\":\"BlueBird  Beautiful WordPress Theme for Personal Blog\",\"slug\":\"bluebird-beautiful-wordpress-theme-for-personal-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bluebird-beautiful-wordpress-theme-for-personal-blog\",\"sales_count\":590,\"is_service\":false,\"rating\":0,\"seller_name\":\"justgoodthemes\",\"seller_url\":\"store\\/just-good-themes\",\"tags\":\"lifestyle, clean, simple, responsive, blog, minimal, WordPress, jQuery, blue, HTML5, food, elegant, personal, blogging, Free Installation Service, retina, beautiful, tabs, classic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-368x296-Xt1nC.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-136x136-uV7Iw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-260x156-l7RPT.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5187560e-4164-4925-9eb3-77c20a140b1e-1800x1800-FdkGn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5187560e-4164-4925-9eb3-77c20a140b1e-kY6QR.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Custom page templates for full-width pages and blog archives\",\"Responsive layout\",\"Retina ready \\u2013 all icons are optimized for retina devices\"],\"created\":\"2013-05-06 01:18:38\",\"created_timestamp\":1367824718,\"demo_url\":\"https:\\/\\/justgoodthemes.net\\/bluebird\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"61db66e9c23bb2cea94225f065516187\"}],\"page\":1,\"pageCount\":49,\"records\":972}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:13:\"cache-control\";a:1:{i:0;s:3:\"900\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:49 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.12.0\";}s:10:\"set-cookie\";a:1:{i:0;s:143:\"SESSION=kmt8qrudmm8anpja0ugd223gk6; expires=Sat, 05-Aug-2017 03:48:49 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.30\";}s:14:\"content-length\";a:1:{i:0;s:5:\"49901\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:96:\"https://api.mojomarketplace.com/api/v2/items?category=wordpress&type=themes&count=20&order=sales\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"kmt8qrudmm8anpja0ugd223gk6\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"expires\";i:1501904929;s:7:\"max-age\";i:1501904929;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:6:\"secure\";b:1;s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501544929;s:11:\"last-access\";i:1501544929;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501544929;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"60b80a3a08bc18e06d6014e32d3263cc\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";s:1:\"*\";s:13:\"cache-control\";s:3:\"900\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:50 GMT\";s:6:\"server\";s:12:\"nginx/1.12.0\";s:10:\"set-cookie\";s:143:\"SESSION=tukjbjnhmtk8b4ra0anme119v3; expires=Sat, 05-Aug-2017 03:48:49 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.30\";s:14:\"content-length\";s:5:\"49901\";}}s:4:\"body\";s:49901:\"{\"status\":\"success\",\"items\":[{\"id\":\"5377b431-d8a8-431b-a711-50c10a141528\",\"name\":\"Highend Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"highend-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/highend-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":26961,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"video, galleries, restaurant, coach, parallax, seo, church, real estate, store, landing page, presentation, photography, minimal, WordPress, responsive, Corporate, Business, Drag and Drop Page Builder, shop, woocommerce, blog, portfolio, gallery, modern, clean, Slider\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5377b431-d8a8-431b-a711-50c10a141528-368x296-95lrK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-590111d8-1938-4c59-907f-19d10a141539-GuDbh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-590111d8-1938-4c59-907f-19d10a141539-T3LLc.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-ptl5s.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-QYQHF.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-800gn.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-D54Pg.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-UCmVZ.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5952d5e7-5f64-4a8b-b93a-1bc00a14153b-CzvQB.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive - Mobile Ready\",\"WooCommerce - Build Your Online Shop\",\"Drag &amp; Drop Page Builder\"],\"created\":\"2014-05-17 14:11:49\",\"created_timestamp\":1400357509,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/highend\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"518048d9-ae08-4939-93ac-0a000a140b1e\",\"name\":\"Creativo 6 Responsive Multi-Purpose WordPress Theme\",\"slug\":\"creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"sales_count\":11573,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, blog, Business, clean, modern, portfolio, creative, HTML5, agency, church, coach, page builder\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-368x296-wh0MK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-136x136-Ap575.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-260x156-ejN1Y.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-igiIT.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-ksXYf.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-EmrSF.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-bs4oQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-AImHx.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-xCNaq.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cyImm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cYsfQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-aINqv.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-1QYDb.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-mhnvB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-dQ1yf.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-neWr1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-PpC6f.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-nmFCK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i2occ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i3hhe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-yuBJ1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-LEwG8.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-vVopz.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-RWrTA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-r67bK.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58e292b7-d944-4114-a587-517c0a14153a-NWw73.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Drag and Drop Page Builder\",\"Responsive Design and Retina Ready\",\"Ecommerce Ready - Works with WooCommerce\"],\"created\":\"2013-04-30 17:03:15\",\"created_timestamp\":1367362995,\"demo_url\":\"https:\\/\\/rockythemes.com\\/creativo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"55f82a3d-0ab8-49c6-a224-1a220a141f38\",\"name\":\"Daisy Simple &amp; Minimal WordPress Blog\",\"slug\":\"daisy-simple-amp-minimal-wordpress-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/daisy-simple-amp-minimal-wordpress-blog\",\"sales_count\":3750,\"is_service\":false,\"rating\":5,\"seller_name\":\"LazaThemes\",\"seller_url\":\"store\\/lazathemes\",\"tags\":\"responsive, blog, minimal, personal, blogging, bootstrap\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-136x136-z6jqO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-260x156-ElBpX.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55f82a3d-0ab8-49c6-a224-1a220a141f38-1800x1800-iX4uf.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55f82a3d-0ab8-49c6-a224-1a220a141f38-ldV0Y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Easy to set up\",\"Clean and professional design\",\"Responsive Layout\"],\"created\":\"2015-09-15 08:37:14\",\"created_timestamp\":1442327834,\"demo_url\":\"http:\\/\\/lazathemes.com\\/demo\\/daisy-wp\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4f7a79714aaca6efc0ce4f7c933538cc\"},{\"id\":\"53a6de8b-9098-40bf-a57d-718e0a141528\",\"name\":\"Birch A Responsive WordPress Theme\",\"slug\":\"birch-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/birch-a-responsive-wordpress-theme\",\"sales_count\":2479,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"translation, tablet, iphone, photography, seo, retina, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, eco, service, natural, agriculture, bio, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, travel, modern, creative, woocommerce, mobile, multipurpose, ipad\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-368x296-gh5uf.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-136x136-GjY4S.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-260x156-aZts2.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-5fL3L.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-7s31Z.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-XeafI.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-611h4.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-YtsTh.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-LuRcX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-tilmc.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-wGrWo.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-QNS9l.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-9DbiX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-0wjF6.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53a6de8b-9098-40bf-a57d-718e0a141528-1180x660-tS7VZ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"SEO Ready\",\"Powerful Admin Panel\",\"Responsive Design\"],\"created\":\"2014-06-22 08:00:22\",\"created_timestamp\":1403445622,\"demo_url\":\"https:\\/\\/birch.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"5444f3ed-49bc-4484-9264-0f5c0a140b28\",\"name\":\"Zephyr A Beautiful WordPress Blog Theme\",\"slug\":\"zephyr-a-beautiful-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zephyr-a-beautiful-wordpress-blog-theme\",\"sales_count\":1513,\"is_service\":false,\"rating\":4.9,\"seller_name\":\"themeflame\",\"seller_url\":\"store\\/themeflame\",\"tags\":\"travel wordpress theme, Food Blog, instagram, responsive, beautiful, clean, beautiful design, modern, WordPress, HTML5, CSS3, fashion, agency, personal, Slider, news, retina, restaurant, minimal, multipurpose, design, elegant, flat, simple, Blog WordPress Themes, Blogger, Grid Blog, photoblog, personal blog, wordpress blog theme, photography blog, blog modern, health, wordpress blog, fashion blog, pretty blog, clean blog, blogging theme, family, theme, blogging wordpress theme, minimalist, wordpress themes, minimal design, simple wordpress theme, personal blog theme, wordpress theme, Personal WordPress Theme, wordpress templates, Personal WordPress Themes, wordpress mobile, personal site, food theme, blog minimal, mommy, seo, fashion theme, customizer, fashion template, layouts, foodie, fashionista, travel, blog, blogging, travelling blog, food\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-368x296-8Di6N.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-136x136-zMAwr.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-260x156-PQ45k.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5444f3ed-49bc-4484-9264-0f5c0a140b28-1800x1800-TtFpS.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5444f3ed-49bc-4484-9264-0f5c0a140b28-1180x660-S6J6V.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Blog and Portfolio Page\",\"Responsive Layout\"],\"created\":\"2014-10-20 06:11:25\",\"created_timestamp\":1413807085,\"demo_url\":\"http:\\/\\/themeflame.com\\/zephyr\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"13f401b35fbfa320cf306a891828f876\"},{\"id\":\"5659d4bf-6b80-434a-b566-64870a141f38\",\"name\":\"FREYJA Personal WordPress Theme for Bloggers\",\"slug\":\"freyja-personal-wordpress-theme-for-bloggers\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/freyja-personal-wordpress-theme-for-bloggers\",\"sales_count\":1432,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"SparrowAndSnow\",\"seller_url\":\"store\\/sparrow-and-snow\",\"tags\":\"audio, instagram, lifestyle, clean, simple, responsive, travel, food, elegant, design, modern, creative, easy, gallery, personal, fashion, photographer, video, Blogger\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58fe8554-6868-418f-a6ed-69a80a141539-6bIxM.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5659d4bf-6b80-434a-b566-64870a141f38-ch13X.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-zo4DU.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-6Vq6I.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-uoyC5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-mqENt.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-yl6Bs.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-EycmZ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-w5O3O.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58fe8554-6868-418f-a6ed-69a80a141539-nWtg4.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"10 Blog Layout\",\"Retina Ready\",\"Translation Ready\"],\"created\":\"2015-11-28 09:23:17\",\"created_timestamp\":1448727797,\"demo_url\":\"http:\\/\\/sparrowandsnow.com\\/freyja\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be9598299f6d395d43fa63d9ec92b3f1\"},{\"id\":\"51803aa2-7ec8-4ff0-b206-09fb0a140b1e\",\"name\":\"Aegaeus Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"aegaeus-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aegaeus-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1380,\"is_service\":false,\"rating\":3.9,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, Corporate, shop, magazine, news, design, music, modern, support, woocommerce, mobile, gallery, multipurpose, brankocee, ipad, agency, light, iphone, photography, white, videos, company, megamenu, sticky\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-368x296-KcSoi.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-136x136-gxRF6.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-260x156-J3rcd.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot1-mm-resize-1546x1800.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1800x1800-Hijw4.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot_1800-mm-resize-1800x857.jpg\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot2-mm-resize-1546x1800.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1180x660-CugyQ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Unlimited Colors\",\"Translation Ready\",\"WordPress 3.5+ Ready\"],\"created\":\"2013-04-30 15:50:55\",\"created_timestamp\":1367358655,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/aegaeus_wp\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"55233c6f-c31c-4ab8-8023-0d350a141f3c\",\"name\":\"Wunderful Clean &amp; Minimal WordPress Blog Theme\",\"slug\":\"wunderful-clean-amp-minimal-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wunderful-clean-amp-minimal-wordpress-blog-theme\",\"sales_count\":1376,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeDsgn\",\"seller_url\":\"store\\/themedsgn\",\"tags\":\"clean, simple, responsive, blog, minimal, WordPress, travel, music, modern, woocommerce, personal, blogging, fashion, recipe\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-136x136-8XtlH.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-260x156-B9ll6.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55233c6f-c31c-4ab8-8023-0d350a141f3c-1180x660-Rk6wt.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean, Elegant &amp; Responsive Layout\",\"Easy to Install &amp; Setup\",\"Suitable for Any Blog\"],\"created\":\"2015-04-06 20:44:54\",\"created_timestamp\":1428374694,\"demo_url\":\"http:\\/\\/themes.themedsgn.com\\/wunderful\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"6a91f75d7b640a42445fafc86a421ac1\"},{\"id\":\"53589542-c8f4-491e-ad1e-29c90a141528\",\"name\":\"Nectar A Responsive WordPress Theme\",\"slug\":\"nectar-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nectar-a-responsive-wordpress-theme\",\"sales_count\":1374,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, photography, seo, retina, fashion, Custom, startup, Fitness, church, office, cafe, environmental, sports, eco, service, organic, natural, customize, agriculture, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, Green, travel, modern\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-368x296-BWaK1.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-136x136-0pPAV.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-MZJXd.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-WwuAA.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-rVJ4N.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YWsAd.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-qGPwW.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-JMt5C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YSJik.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-2hEmp.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-ZMB1W.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-B6hX8.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53589542-c8f4-491e-ad1e-29c90a141528-1180x660-oTokc.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean and Modern\",\"WooCommerce\",\"Responsive Design\"],\"created\":\"2014-04-23 23:04:45\",\"created_timestamp\":1398315885,\"demo_url\":\"https:\\/\\/nectar.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"54626dc3-c4d8-40b3-b441-3ff60a141528\",\"name\":\"Nimva Ultimate Multi Purpose WordPress Theme\",\"slug\":\"nimva-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nimva-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1348,\"is_service\":false,\"rating\":5,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, Business, clean, minimal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-136x136-7Bg7b.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-260x156-Vucki.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-UomN2.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-FYTxh.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-WktDL.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-rlk5m.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-8RwBo.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-3DFLY.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54626dc3-c4d8-40b3-b441-3ff60a141528-1180x660-uEBMb.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Powerful Admin Panel\",\"Retina Ready\",\"Drag and Drop Visual Composer elements\"],\"created\":\"2014-11-11 14:27:09\",\"created_timestamp\":1415741229,\"demo_url\":\"http:\\/\\/rockythemes.com\\/nimva\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"57c43604-3e40-4824-9219-1cc70a14153b\",\"name\":\"The Core Multi-Purpose WordPress Theme\",\"slug\":\"the-core-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/the-core-multi-purpose-wordpress-theme\",\"sales_count\":1317,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeFuse\",\"seller_url\":\"store\\/themefuse\",\"tags\":\"catering, events, kindergarten, architecture, lawyers, responsive, blog, Business, WordPress, Corporate, medical, magazine, restaurant, creative, agency, charity, bakery, cleaning, wedding, church\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57c43604-3e40-4824-9219-1cc70a14153b-KHmWi.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5928264a-c4f8-4dcc-91d9-56040a141539-HFsZg.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5928264a-c4f8-4dcc-91d9-56040a141539-mXR7A.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57c43604-3e40-4824-9219-1cc70a14153b-vgV3U.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5928264a-c4f8-4dcc-91d9-56040a141539-zQKuI.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"20 Website Demos Included (more to come for FREE)\",\"1 Click  Demo Install\",\"Visual Page Builder\"],\"created\":\"2016-08-29 07:18:34\",\"created_timestamp\":1472476714,\"demo_url\":\"https:\\/\\/demo.themefuse.com\\/the-core\\/?market_referrer=mojo\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fe54e73e29cac33917ee48ab110b9bef\"},{\"id\":\"532798c5-2834-440b-8469-255a0a141528\",\"name\":\"Creative Blog WordPress Theme\",\"slug\":\"creative-blog-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creative-blog-wordpress-theme\",\"sales_count\":1125,\"is_service\":false,\"rating\":3,\"seller_name\":\"DessignThemes\",\"seller_url\":\"store\\/dessign-themes\",\"tags\":\"portfolio, blog, photography\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-532798c5-2834-440b-8469-255a0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-532798c5-2834-440b-8469-255a0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-532798c5-2834-440b-8469-255a0a141528-260x156.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/screen_shots-532798c5-2834-440b-8469-255a0a141528-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-532798c5-2834-440b-8469-255a0a141528-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Responsive Layout\",\"Slider Video Feature\",\"Theme Options panel\"],\"created\":\"2014-03-17 19:15:51\",\"created_timestamp\":1395105351,\"demo_url\":\"http:\\/\\/www.dessign.net\\/creativeblogtheme\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"12a1f004a6ed51582a3f0de432cf020d\"},{\"id\":\"55dd6a85-24f0-438a-8723-1ea40a141f38\",\"name\":\"Solstice Elegant WordPress Theme\",\"slug\":\"solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"sales_count\":1057,\"is_service\":false,\"rating\":5,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"responsive, portfolio, blog, minimal, Business, WordPress, travel, modern, creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, iphone, photography, seo, retina, customizer, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, service, natural, customize, agriculture, bio, clean\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-368x296-czJN9.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-136x136-3WX3a.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-260x156-5GLPx.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-pgETy.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fczJB.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9seWT.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-wZDz0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fQWmi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-x1Kc0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-TZba1.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9BUzz.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-iA29C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-OWTE0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9sIUv.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-tfE7f.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-AYepv.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55dd6a85-24f0-438a-8723-1ea40a141f38-1180x660-Io87q.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Plugin Compatible \",\"Responsive Layout\",\"Customizer\"],\"created\":\"2015-08-26 02:03:32\",\"created_timestamp\":1440576212,\"demo_url\":\"https:\\/\\/solstice.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"55e0a4cb-394c-4af9-b480-01610a141f37\",\"name\":\"Amiable A WordPress Blogging Theme\",\"slug\":\"amiable-a-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amiable-a-wordpress-blogging-theme\",\"sales_count\":764,\"is_service\":false,\"rating\":5,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, clean, modern, WordPress, blog, fashion, retina, food, mobile, photography, minimal, gallery, Slider, personal, magazine, news, simple, travel, blogging, video, theme, support\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-368x296-YUEWQ.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-136x136-0T1lk.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-260x156-c46rC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-s9CU7.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-Y49gi.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-M5MTN.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55e0a4cb-394c-4af9-b480-01610a141f37-1180x660-nRwUj.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Responsive Layout\",\"Clean and Professional Design\",\"Easy to Set Up\"],\"created\":\"2015-08-28 13:07:12\",\"created_timestamp\":1440788832,\"demo_url\":\"http:\\/\\/amiable.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"544f515e-80bc-4880-a17d-56cc0a141528\",\"name\":\"Credence A Wonderful Multi-Purpose WordPress Theme\",\"slug\":\"credence-a-wonderful-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/credence-a-wonderful-multi-purpose-wordpress-theme\",\"sales_count\":756,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"sh-themes\",\"seller_url\":\"store\\/sh-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, WordPress, news, modern, premium, woocommerce, multipurpose, photography, customizable, church, wpml, Multisite, exclusive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-136x136-90nsF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-260x156-nRhu9.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-544f515e-80bc-4880-a17d-56cc0a141528-1800x1800-qpHxv.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-544f515e-80bc-4880-a17d-56cc0a141528-1180x660-zkSx1.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive, Retina Ready\",\"The Most Powerful Features\",\"Unlimited Design Possibilities\"],\"created\":\"2014-10-28 02:38:39\",\"created_timestamp\":1414485519,\"demo_url\":\"http:\\/\\/demo.sh-themes.com\\/credence\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"18a26bdf8bc503c3f2795bd133d51873\"},{\"id\":\"55b4af45-6248-4025-846b-39650a141f38\",\"name\":\"Semplice An Elegant WordPress Blogging Theme\",\"slug\":\"semplice-an-elegant-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/semplice-an-elegant-wordpress-blogging-theme\",\"sales_count\":743,\"is_service\":false,\"rating\":4.2,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"Slider, music, creative, gallery, grid, personal, retina, facebook, fashion, video, beauty, instagram, lifestyle, clean, responsive, blog\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b4af45-6248-4025-846b-39650a141f38-368x296-HQfZe.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b4af45-6248-4025-846b-39650a141f38-VBSIh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b4af45-6248-4025-846b-39650a141f38-kG44U.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-R9zHx.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-rzpoq.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b4af45-6248-4025-846b-39650a141f38-DnvmC.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Powerful Admin Panel\",\"Responsive Layout\",\"Clean and professional design\"],\"created\":\"2015-07-26 05:11:26\",\"created_timestamp\":1437909086,\"demo_url\":\"http:\\/\\/semplice.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"57d18606-e938-4cf2-b0af-4c780a14153a\",\"name\":\"Blogger Clean and Minimal WordPress Theme for Blog\",\"slug\":\"blogger-clean-and-minimal-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/blogger-clean-and-minimal-wordpress-theme-for-blog\",\"sales_count\":666,\"is_service\":false,\"rating\":4,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"news, simple, elegant, travel, wordpress theme, blogging, Blog WordPress Themes, wordpress templates, wordpress themes, portfolio, minimal, gallery, clean, responsive, blog, WordPress, creative, photography, fashion, multipurpose, personal, magazine\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-SpauU.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-RtbC3.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57d18606-e938-4cf2-b0af-4c780a14153a-Ks7Xi.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57d18606-e938-4cf2-b0af-4c780a14153a-F1uTT.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Fully Responsive\",\"Easy to Use and Install\",\"Multiple Blog Layouts\"],\"created\":\"2016-09-08 09:39:26\",\"created_timestamp\":1473349166,\"demo_url\":\"http:\\/\\/gbthemes.net\\/blogger\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"528b47c8-7fc4-4ad5-a1e9-39980a140b24\",\"name\":\"Trias Multi-Style Corporate WordPress Theme\",\"slug\":\"trias-multi-style-corporate-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/trias-multi-style-corporate-wordpress-theme\",\"sales_count\":663,\"is_service\":false,\"rating\":2.5,\"seller_name\":\"CodexThemes\",\"seller_url\":\"\",\"tags\":\"clean, responsive, portfolio, Business, Corporate, design, creative, products, agency, template, marketing, projects, service, style, consulting\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-528b47c8-7fc4-4ad5-a1e9-39980a140b24-screenshot-mm-resize-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-528b47c8-7fc4-4ad5-a1e9-39980a140b24-prev-mm-resize-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"psd_files\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"100% Responsive &amp; Mobile Ready\",\"Homepage Constructor \",\"Unlimited colors\"],\"created\":\"2013-11-19 05:00:41\",\"created_timestamp\":1384862441,\"demo_url\":\"http:\\/\\/codex-themes.com\\/trias\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"44b134143c71bcded094a8c3c2c3def1\"},{\"id\":\"54d0ee9c-6544-4bcd-abc2-70e40a141528\",\"name\":\"ZenBlog Lovely WordPress Theme for Blog\",\"slug\":\"zenblog-lovely-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zenblog-lovely-wordpress-theme-for-blog\",\"sales_count\":649,\"is_service\":false,\"rating\":5,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"personal, blogging, simple wordpress theme, blog, responsive, modern, photography, creative, clean, wordpress theme, wordpress template, fashion, minimal, seo, mobile\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-368x296-rxsEu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-136x136-l3tMq.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-260x156-tOGvX.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54d0ee9c-6544-4bcd-abc2-70e40a141528-1800x1800-MthMx.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54d0ee9c-6544-4bcd-abc2-70e40a141528-WSCQ3.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Powerful Admin Panel\",\"Responsive Layout\"],\"created\":\"2015-02-03 08:57:43\",\"created_timestamp\":1422979063,\"demo_url\":\"http:\\/\\/gbthemes.net\\/zenblog\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"5187560e-4164-4925-9eb3-77c20a140b1e\",\"name\":\"BlueBird  Beautiful WordPress Theme for Personal Blog\",\"slug\":\"bluebird-beautiful-wordpress-theme-for-personal-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bluebird-beautiful-wordpress-theme-for-personal-blog\",\"sales_count\":590,\"is_service\":false,\"rating\":0,\"seller_name\":\"justgoodthemes\",\"seller_url\":\"store\\/just-good-themes\",\"tags\":\"lifestyle, clean, simple, responsive, blog, minimal, WordPress, jQuery, blue, HTML5, food, elegant, personal, blogging, Free Installation Service, retina, beautiful, tabs, classic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-368x296-Xt1nC.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-136x136-uV7Iw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-260x156-l7RPT.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5187560e-4164-4925-9eb3-77c20a140b1e-1800x1800-FdkGn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5187560e-4164-4925-9eb3-77c20a140b1e-kY6QR.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Custom page templates for full-width pages and blog archives\",\"Responsive layout\",\"Retina ready \\u2013 all icons are optimized for retina devices\"],\"created\":\"2013-05-06 01:18:38\",\"created_timestamp\":1367824718,\"demo_url\":\"https:\\/\\/justgoodthemes.net\\/bluebird\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"61db66e9c23bb2cea94225f065516187\"}],\"page\":1,\"pageCount\":49,\"records\":972}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"tukjbjnhmtk8b4ra0anme119v3\";s:7:\"expires\";i:1501904929;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:49901:\"{\"status\":\"success\",\"items\":[{\"id\":\"5377b431-d8a8-431b-a711-50c10a141528\",\"name\":\"Highend Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"highend-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/highend-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":26961,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"video, galleries, restaurant, coach, parallax, seo, church, real estate, store, landing page, presentation, photography, minimal, WordPress, responsive, Corporate, Business, Drag and Drop Page Builder, shop, woocommerce, blog, portfolio, gallery, modern, clean, Slider\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5377b431-d8a8-431b-a711-50c10a141528-368x296-95lrK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-590111d8-1938-4c59-907f-19d10a141539-GuDbh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-590111d8-1938-4c59-907f-19d10a141539-T3LLc.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-ptl5s.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-QYQHF.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-800gn.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-D54Pg.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-UCmVZ.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5952d5e7-5f64-4a8b-b93a-1bc00a14153b-CzvQB.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive - Mobile Ready\",\"WooCommerce - Build Your Online Shop\",\"Drag &amp; Drop Page Builder\"],\"created\":\"2014-05-17 14:11:49\",\"created_timestamp\":1400357509,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/highend\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"518048d9-ae08-4939-93ac-0a000a140b1e\",\"name\":\"Creativo 6 Responsive Multi-Purpose WordPress Theme\",\"slug\":\"creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"sales_count\":11573,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, blog, Business, clean, modern, portfolio, creative, HTML5, agency, church, coach, page builder\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-368x296-wh0MK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-136x136-Ap575.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-260x156-ejN1Y.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-igiIT.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-ksXYf.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-EmrSF.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-bs4oQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-AImHx.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-xCNaq.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cyImm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cYsfQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-aINqv.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-1QYDb.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-mhnvB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-dQ1yf.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-neWr1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-PpC6f.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-nmFCK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i2occ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i3hhe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-yuBJ1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-LEwG8.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-vVopz.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-RWrTA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-r67bK.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58e292b7-d944-4114-a587-517c0a14153a-NWw73.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Drag and Drop Page Builder\",\"Responsive Design and Retina Ready\",\"Ecommerce Ready - Works with WooCommerce\"],\"created\":\"2013-04-30 17:03:15\",\"created_timestamp\":1367362995,\"demo_url\":\"https:\\/\\/rockythemes.com\\/creativo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"55f82a3d-0ab8-49c6-a224-1a220a141f38\",\"name\":\"Daisy Simple &amp; Minimal WordPress Blog\",\"slug\":\"daisy-simple-amp-minimal-wordpress-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/daisy-simple-amp-minimal-wordpress-blog\",\"sales_count\":3750,\"is_service\":false,\"rating\":5,\"seller_name\":\"LazaThemes\",\"seller_url\":\"store\\/lazathemes\",\"tags\":\"responsive, blog, minimal, personal, blogging, bootstrap\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-136x136-z6jqO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-260x156-ElBpX.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55f82a3d-0ab8-49c6-a224-1a220a141f38-1800x1800-iX4uf.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55f82a3d-0ab8-49c6-a224-1a220a141f38-ldV0Y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Easy to set up\",\"Clean and professional design\",\"Responsive Layout\"],\"created\":\"2015-09-15 08:37:14\",\"created_timestamp\":1442327834,\"demo_url\":\"http:\\/\\/lazathemes.com\\/demo\\/daisy-wp\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4f7a79714aaca6efc0ce4f7c933538cc\"},{\"id\":\"53a6de8b-9098-40bf-a57d-718e0a141528\",\"name\":\"Birch A Responsive WordPress Theme\",\"slug\":\"birch-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/birch-a-responsive-wordpress-theme\",\"sales_count\":2479,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"translation, tablet, iphone, photography, seo, retina, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, eco, service, natural, agriculture, bio, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, travel, modern, creative, woocommerce, mobile, multipurpose, ipad\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-368x296-gh5uf.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-136x136-GjY4S.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-260x156-aZts2.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-5fL3L.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-7s31Z.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-XeafI.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-611h4.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-YtsTh.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-LuRcX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-tilmc.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-wGrWo.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-QNS9l.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-9DbiX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-0wjF6.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53a6de8b-9098-40bf-a57d-718e0a141528-1180x660-tS7VZ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"SEO Ready\",\"Powerful Admin Panel\",\"Responsive Design\"],\"created\":\"2014-06-22 08:00:22\",\"created_timestamp\":1403445622,\"demo_url\":\"https:\\/\\/birch.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"5444f3ed-49bc-4484-9264-0f5c0a140b28\",\"name\":\"Zephyr A Beautiful WordPress Blog Theme\",\"slug\":\"zephyr-a-beautiful-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zephyr-a-beautiful-wordpress-blog-theme\",\"sales_count\":1513,\"is_service\":false,\"rating\":4.9,\"seller_name\":\"themeflame\",\"seller_url\":\"store\\/themeflame\",\"tags\":\"travel wordpress theme, Food Blog, instagram, responsive, beautiful, clean, beautiful design, modern, WordPress, HTML5, CSS3, fashion, agency, personal, Slider, news, retina, restaurant, minimal, multipurpose, design, elegant, flat, simple, Blog WordPress Themes, Blogger, Grid Blog, photoblog, personal blog, wordpress blog theme, photography blog, blog modern, health, wordpress blog, fashion blog, pretty blog, clean blog, blogging theme, family, theme, blogging wordpress theme, minimalist, wordpress themes, minimal design, simple wordpress theme, personal blog theme, wordpress theme, Personal WordPress Theme, wordpress templates, Personal WordPress Themes, wordpress mobile, personal site, food theme, blog minimal, mommy, seo, fashion theme, customizer, fashion template, layouts, foodie, fashionista, travel, blog, blogging, travelling blog, food\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-368x296-8Di6N.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-136x136-zMAwr.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-260x156-PQ45k.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5444f3ed-49bc-4484-9264-0f5c0a140b28-1800x1800-TtFpS.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5444f3ed-49bc-4484-9264-0f5c0a140b28-1180x660-S6J6V.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Blog and Portfolio Page\",\"Responsive Layout\"],\"created\":\"2014-10-20 06:11:25\",\"created_timestamp\":1413807085,\"demo_url\":\"http:\\/\\/themeflame.com\\/zephyr\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"13f401b35fbfa320cf306a891828f876\"},{\"id\":\"5659d4bf-6b80-434a-b566-64870a141f38\",\"name\":\"FREYJA Personal WordPress Theme for Bloggers\",\"slug\":\"freyja-personal-wordpress-theme-for-bloggers\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/freyja-personal-wordpress-theme-for-bloggers\",\"sales_count\":1432,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"SparrowAndSnow\",\"seller_url\":\"store\\/sparrow-and-snow\",\"tags\":\"audio, instagram, lifestyle, clean, simple, responsive, travel, food, elegant, design, modern, creative, easy, gallery, personal, fashion, photographer, video, Blogger\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58fe8554-6868-418f-a6ed-69a80a141539-6bIxM.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5659d4bf-6b80-434a-b566-64870a141f38-ch13X.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-zo4DU.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-6Vq6I.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-uoyC5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-mqENt.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-yl6Bs.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-EycmZ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-w5O3O.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58fe8554-6868-418f-a6ed-69a80a141539-nWtg4.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"10 Blog Layout\",\"Retina Ready\",\"Translation Ready\"],\"created\":\"2015-11-28 09:23:17\",\"created_timestamp\":1448727797,\"demo_url\":\"http:\\/\\/sparrowandsnow.com\\/freyja\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be9598299f6d395d43fa63d9ec92b3f1\"},{\"id\":\"51803aa2-7ec8-4ff0-b206-09fb0a140b1e\",\"name\":\"Aegaeus Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"aegaeus-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aegaeus-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1380,\"is_service\":false,\"rating\":3.9,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, Corporate, shop, magazine, news, design, music, modern, support, woocommerce, mobile, gallery, multipurpose, brankocee, ipad, agency, light, iphone, photography, white, videos, company, megamenu, sticky\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-368x296-KcSoi.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-136x136-gxRF6.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-260x156-J3rcd.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot1-mm-resize-1546x1800.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1800x1800-Hijw4.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot_1800-mm-resize-1800x857.jpg\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot2-mm-resize-1546x1800.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1180x660-CugyQ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Unlimited Colors\",\"Translation Ready\",\"WordPress 3.5+ Ready\"],\"created\":\"2013-04-30 15:50:55\",\"created_timestamp\":1367358655,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/aegaeus_wp\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"55233c6f-c31c-4ab8-8023-0d350a141f3c\",\"name\":\"Wunderful Clean &amp; Minimal WordPress Blog Theme\",\"slug\":\"wunderful-clean-amp-minimal-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wunderful-clean-amp-minimal-wordpress-blog-theme\",\"sales_count\":1376,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeDsgn\",\"seller_url\":\"store\\/themedsgn\",\"tags\":\"clean, simple, responsive, blog, minimal, WordPress, travel, music, modern, woocommerce, personal, blogging, fashion, recipe\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-136x136-8XtlH.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-260x156-B9ll6.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55233c6f-c31c-4ab8-8023-0d350a141f3c-1180x660-Rk6wt.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean, Elegant &amp; Responsive Layout\",\"Easy to Install &amp; Setup\",\"Suitable for Any Blog\"],\"created\":\"2015-04-06 20:44:54\",\"created_timestamp\":1428374694,\"demo_url\":\"http:\\/\\/themes.themedsgn.com\\/wunderful\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"6a91f75d7b640a42445fafc86a421ac1\"},{\"id\":\"53589542-c8f4-491e-ad1e-29c90a141528\",\"name\":\"Nectar A Responsive WordPress Theme\",\"slug\":\"nectar-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nectar-a-responsive-wordpress-theme\",\"sales_count\":1374,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, photography, seo, retina, fashion, Custom, startup, Fitness, church, office, cafe, environmental, sports, eco, service, organic, natural, customize, agriculture, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, Green, travel, modern\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-368x296-BWaK1.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-136x136-0pPAV.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-MZJXd.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-WwuAA.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-rVJ4N.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YWsAd.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-qGPwW.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-JMt5C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YSJik.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-2hEmp.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-ZMB1W.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-B6hX8.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53589542-c8f4-491e-ad1e-29c90a141528-1180x660-oTokc.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean and Modern\",\"WooCommerce\",\"Responsive Design\"],\"created\":\"2014-04-23 23:04:45\",\"created_timestamp\":1398315885,\"demo_url\":\"https:\\/\\/nectar.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"54626dc3-c4d8-40b3-b441-3ff60a141528\",\"name\":\"Nimva Ultimate Multi Purpose WordPress Theme\",\"slug\":\"nimva-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nimva-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1348,\"is_service\":false,\"rating\":5,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, Business, clean, minimal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-136x136-7Bg7b.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-260x156-Vucki.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-UomN2.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-FYTxh.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-WktDL.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-rlk5m.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-8RwBo.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-3DFLY.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54626dc3-c4d8-40b3-b441-3ff60a141528-1180x660-uEBMb.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Powerful Admin Panel\",\"Retina Ready\",\"Drag and Drop Visual Composer elements\"],\"created\":\"2014-11-11 14:27:09\",\"created_timestamp\":1415741229,\"demo_url\":\"http:\\/\\/rockythemes.com\\/nimva\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"57c43604-3e40-4824-9219-1cc70a14153b\",\"name\":\"The Core Multi-Purpose WordPress Theme\",\"slug\":\"the-core-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/the-core-multi-purpose-wordpress-theme\",\"sales_count\":1317,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeFuse\",\"seller_url\":\"store\\/themefuse\",\"tags\":\"catering, events, kindergarten, architecture, lawyers, responsive, blog, Business, WordPress, Corporate, medical, magazine, restaurant, creative, agency, charity, bakery, cleaning, wedding, church\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57c43604-3e40-4824-9219-1cc70a14153b-KHmWi.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5928264a-c4f8-4dcc-91d9-56040a141539-HFsZg.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5928264a-c4f8-4dcc-91d9-56040a141539-mXR7A.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57c43604-3e40-4824-9219-1cc70a14153b-vgV3U.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5928264a-c4f8-4dcc-91d9-56040a141539-zQKuI.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"20 Website Demos Included (more to come for FREE)\",\"1 Click  Demo Install\",\"Visual Page Builder\"],\"created\":\"2016-08-29 07:18:34\",\"created_timestamp\":1472476714,\"demo_url\":\"https:\\/\\/demo.themefuse.com\\/the-core\\/?market_referrer=mojo\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fe54e73e29cac33917ee48ab110b9bef\"},{\"id\":\"532798c5-2834-440b-8469-255a0a141528\",\"name\":\"Creative Blog WordPress Theme\",\"slug\":\"creative-blog-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creative-blog-wordpress-theme\",\"sales_count\":1125,\"is_service\":false,\"rating\":3,\"seller_name\":\"DessignThemes\",\"seller_url\":\"store\\/dessign-themes\",\"tags\":\"portfolio, blog, photography\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-532798c5-2834-440b-8469-255a0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-532798c5-2834-440b-8469-255a0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-532798c5-2834-440b-8469-255a0a141528-260x156.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/screen_shots-532798c5-2834-440b-8469-255a0a141528-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-532798c5-2834-440b-8469-255a0a141528-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Responsive Layout\",\"Slider Video Feature\",\"Theme Options panel\"],\"created\":\"2014-03-17 19:15:51\",\"created_timestamp\":1395105351,\"demo_url\":\"http:\\/\\/www.dessign.net\\/creativeblogtheme\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"12a1f004a6ed51582a3f0de432cf020d\"},{\"id\":\"55dd6a85-24f0-438a-8723-1ea40a141f38\",\"name\":\"Solstice Elegant WordPress Theme\",\"slug\":\"solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"sales_count\":1057,\"is_service\":false,\"rating\":5,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"responsive, portfolio, blog, minimal, Business, WordPress, travel, modern, creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, iphone, photography, seo, retina, customizer, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, service, natural, customize, agriculture, bio, clean\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-368x296-czJN9.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-136x136-3WX3a.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-260x156-5GLPx.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-pgETy.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fczJB.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9seWT.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-wZDz0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fQWmi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-x1Kc0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-TZba1.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9BUzz.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-iA29C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-OWTE0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9sIUv.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-tfE7f.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-AYepv.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55dd6a85-24f0-438a-8723-1ea40a141f38-1180x660-Io87q.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Plugin Compatible \",\"Responsive Layout\",\"Customizer\"],\"created\":\"2015-08-26 02:03:32\",\"created_timestamp\":1440576212,\"demo_url\":\"https:\\/\\/solstice.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"55e0a4cb-394c-4af9-b480-01610a141f37\",\"name\":\"Amiable A WordPress Blogging Theme\",\"slug\":\"amiable-a-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amiable-a-wordpress-blogging-theme\",\"sales_count\":764,\"is_service\":false,\"rating\":5,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, clean, modern, WordPress, blog, fashion, retina, food, mobile, photography, minimal, gallery, Slider, personal, magazine, news, simple, travel, blogging, video, theme, support\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-368x296-YUEWQ.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-136x136-0T1lk.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-260x156-c46rC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-s9CU7.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-Y49gi.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-M5MTN.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55e0a4cb-394c-4af9-b480-01610a141f37-1180x660-nRwUj.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Responsive Layout\",\"Clean and Professional Design\",\"Easy to Set Up\"],\"created\":\"2015-08-28 13:07:12\",\"created_timestamp\":1440788832,\"demo_url\":\"http:\\/\\/amiable.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"544f515e-80bc-4880-a17d-56cc0a141528\",\"name\":\"Credence A Wonderful Multi-Purpose WordPress Theme\",\"slug\":\"credence-a-wonderful-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/credence-a-wonderful-multi-purpose-wordpress-theme\",\"sales_count\":756,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"sh-themes\",\"seller_url\":\"store\\/sh-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, WordPress, news, modern, premium, woocommerce, multipurpose, photography, customizable, church, wpml, Multisite, exclusive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-136x136-90nsF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-260x156-nRhu9.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-544f515e-80bc-4880-a17d-56cc0a141528-1800x1800-qpHxv.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-544f515e-80bc-4880-a17d-56cc0a141528-1180x660-zkSx1.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive, Retina Ready\",\"The Most Powerful Features\",\"Unlimited Design Possibilities\"],\"created\":\"2014-10-28 02:38:39\",\"created_timestamp\":1414485519,\"demo_url\":\"http:\\/\\/demo.sh-themes.com\\/credence\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"18a26bdf8bc503c3f2795bd133d51873\"},{\"id\":\"55b4af45-6248-4025-846b-39650a141f38\",\"name\":\"Semplice An Elegant WordPress Blogging Theme\",\"slug\":\"semplice-an-elegant-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/semplice-an-elegant-wordpress-blogging-theme\",\"sales_count\":743,\"is_service\":false,\"rating\":4.2,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"Slider, music, creative, gallery, grid, personal, retina, facebook, fashion, video, beauty, instagram, lifestyle, clean, responsive, blog\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b4af45-6248-4025-846b-39650a141f38-368x296-HQfZe.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b4af45-6248-4025-846b-39650a141f38-VBSIh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b4af45-6248-4025-846b-39650a141f38-kG44U.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-R9zHx.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-rzpoq.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b4af45-6248-4025-846b-39650a141f38-DnvmC.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Powerful Admin Panel\",\"Responsive Layout\",\"Clean and professional design\"],\"created\":\"2015-07-26 05:11:26\",\"created_timestamp\":1437909086,\"demo_url\":\"http:\\/\\/semplice.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"57d18606-e938-4cf2-b0af-4c780a14153a\",\"name\":\"Blogger Clean and Minimal WordPress Theme for Blog\",\"slug\":\"blogger-clean-and-minimal-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/blogger-clean-and-minimal-wordpress-theme-for-blog\",\"sales_count\":666,\"is_service\":false,\"rating\":4,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"news, simple, elegant, travel, wordpress theme, blogging, Blog WordPress Themes, wordpress templates, wordpress themes, portfolio, minimal, gallery, clean, responsive, blog, WordPress, creative, photography, fashion, multipurpose, personal, magazine\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-SpauU.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-RtbC3.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57d18606-e938-4cf2-b0af-4c780a14153a-Ks7Xi.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57d18606-e938-4cf2-b0af-4c780a14153a-F1uTT.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Fully Responsive\",\"Easy to Use and Install\",\"Multiple Blog Layouts\"],\"created\":\"2016-09-08 09:39:26\",\"created_timestamp\":1473349166,\"demo_url\":\"http:\\/\\/gbthemes.net\\/blogger\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"528b47c8-7fc4-4ad5-a1e9-39980a140b24\",\"name\":\"Trias Multi-Style Corporate WordPress Theme\",\"slug\":\"trias-multi-style-corporate-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/trias-multi-style-corporate-wordpress-theme\",\"sales_count\":663,\"is_service\":false,\"rating\":2.5,\"seller_name\":\"CodexThemes\",\"seller_url\":\"\",\"tags\":\"clean, responsive, portfolio, Business, Corporate, design, creative, products, agency, template, marketing, projects, service, style, consulting\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-528b47c8-7fc4-4ad5-a1e9-39980a140b24-screenshot-mm-resize-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-528b47c8-7fc4-4ad5-a1e9-39980a140b24-prev-mm-resize-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"psd_files\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"100% Responsive &amp; Mobile Ready\",\"Homepage Constructor \",\"Unlimited colors\"],\"created\":\"2013-11-19 05:00:41\",\"created_timestamp\":1384862441,\"demo_url\":\"http:\\/\\/codex-themes.com\\/trias\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"44b134143c71bcded094a8c3c2c3def1\"},{\"id\":\"54d0ee9c-6544-4bcd-abc2-70e40a141528\",\"name\":\"ZenBlog Lovely WordPress Theme for Blog\",\"slug\":\"zenblog-lovely-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zenblog-lovely-wordpress-theme-for-blog\",\"sales_count\":649,\"is_service\":false,\"rating\":5,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"personal, blogging, simple wordpress theme, blog, responsive, modern, photography, creative, clean, wordpress theme, wordpress template, fashion, minimal, seo, mobile\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-368x296-rxsEu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-136x136-l3tMq.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-260x156-tOGvX.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54d0ee9c-6544-4bcd-abc2-70e40a141528-1800x1800-MthMx.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54d0ee9c-6544-4bcd-abc2-70e40a141528-WSCQ3.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Powerful Admin Panel\",\"Responsive Layout\"],\"created\":\"2015-02-03 08:57:43\",\"created_timestamp\":1422979063,\"demo_url\":\"http:\\/\\/gbthemes.net\\/zenblog\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"5187560e-4164-4925-9eb3-77c20a140b1e\",\"name\":\"BlueBird  Beautiful WordPress Theme for Personal Blog\",\"slug\":\"bluebird-beautiful-wordpress-theme-for-personal-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bluebird-beautiful-wordpress-theme-for-personal-blog\",\"sales_count\":590,\"is_service\":false,\"rating\":0,\"seller_name\":\"justgoodthemes\",\"seller_url\":\"store\\/just-good-themes\",\"tags\":\"lifestyle, clean, simple, responsive, blog, minimal, WordPress, jQuery, blue, HTML5, food, elegant, personal, blogging, Free Installation Service, retina, beautiful, tabs, classic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-368x296-Xt1nC.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-136x136-uV7Iw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-260x156-l7RPT.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5187560e-4164-4925-9eb3-77c20a140b1e-1800x1800-FdkGn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5187560e-4164-4925-9eb3-77c20a140b1e-kY6QR.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Custom page templates for full-width pages and blog archives\",\"Responsive layout\",\"Retina ready \\u2013 all icons are optimized for retina devices\"],\"created\":\"2013-05-06 01:18:38\",\"created_timestamp\":1367824718,\"demo_url\":\"https:\\/\\/justgoodthemes.net\\/bluebird\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"61db66e9c23bb2cea94225f065516187\"}],\"page\":1,\"pageCount\":49,\"records\":972}\";s:3:\"raw\";s:50303:\"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nCache-Control: 900\r\nContent-Type: application/json; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:48:50 GMT\r\nServer: nginx/1.12.0\r\nSet-Cookie: SESSION=tukjbjnhmtk8b4ra0anme119v3; expires=Sat, 05-Aug-2017 03:48:49 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\r\nX-Powered-By: PHP/5.6.30\r\nContent-Length: 49901\r\nConnection: Close\r\n\r\n{\"status\":\"success\",\"items\":[{\"id\":\"5377b431-d8a8-431b-a711-50c10a141528\",\"name\":\"Highend Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"highend-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/highend-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":26961,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"video, galleries, restaurant, coach, parallax, seo, church, real estate, store, landing page, presentation, photography, minimal, WordPress, responsive, Corporate, Business, Drag and Drop Page Builder, shop, woocommerce, blog, portfolio, gallery, modern, clean, Slider\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5377b431-d8a8-431b-a711-50c10a141528-368x296-95lrK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-590111d8-1938-4c59-907f-19d10a141539-GuDbh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-590111d8-1938-4c59-907f-19d10a141539-T3LLc.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-ptl5s.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-QYQHF.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-800gn.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-D54Pg.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5377b431-d8a8-431b-a711-50c10a141528-1800x1800-UCmVZ.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5952d5e7-5f64-4a8b-b93a-1bc00a14153b-CzvQB.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive - Mobile Ready\",\"WooCommerce - Build Your Online Shop\",\"Drag &amp; Drop Page Builder\"],\"created\":\"2014-05-17 14:11:49\",\"created_timestamp\":1400357509,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/highend\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"518048d9-ae08-4939-93ac-0a000a140b1e\",\"name\":\"Creativo 6 Responsive Multi-Purpose WordPress Theme\",\"slug\":\"creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creativo-5-0-ultra-responsive-multipurpose-wp-theme\",\"sales_count\":11573,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, blog, Business, clean, modern, portfolio, creative, HTML5, agency, church, coach, page builder\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-368x296-wh0MK.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-136x136-Ap575.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-518048d9-ae08-4939-93ac-0a000a140b1e-260x156-ejN1Y.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-igiIT.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-ksXYf.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-EmrSF.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-bs4oQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-AImHx.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-xCNaq.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cyImm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-cYsfQ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-aINqv.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-1800x1800-1QYDb.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-mhnvB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-dQ1yf.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-neWr1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-PpC6f.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-nmFCK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i2occ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-i3hhe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-yuBJ1.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-LEwG8.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-vVopz.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-RWrTA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-518048d9-ae08-4939-93ac-0a000a140b1e-r67bK.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58e292b7-d944-4114-a587-517c0a14153a-NWw73.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Drag and Drop Page Builder\",\"Responsive Design and Retina Ready\",\"Ecommerce Ready - Works with WooCommerce\"],\"created\":\"2013-04-30 17:03:15\",\"created_timestamp\":1367362995,\"demo_url\":\"https:\\/\\/rockythemes.com\\/creativo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"55f82a3d-0ab8-49c6-a224-1a220a141f38\",\"name\":\"Daisy Simple &amp; Minimal WordPress Blog\",\"slug\":\"daisy-simple-amp-minimal-wordpress-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/daisy-simple-amp-minimal-wordpress-blog\",\"sales_count\":3750,\"is_service\":false,\"rating\":5,\"seller_name\":\"LazaThemes\",\"seller_url\":\"store\\/lazathemes\",\"tags\":\"responsive, blog, minimal, personal, blogging, bootstrap\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-136x136-z6jqO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55f82a3d-0ab8-49c6-a224-1a220a141f38-260x156-ElBpX.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55f82a3d-0ab8-49c6-a224-1a220a141f38-1800x1800-iX4uf.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55f82a3d-0ab8-49c6-a224-1a220a141f38-ldV0Y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Easy to set up\",\"Clean and professional design\",\"Responsive Layout\"],\"created\":\"2015-09-15 08:37:14\",\"created_timestamp\":1442327834,\"demo_url\":\"http:\\/\\/lazathemes.com\\/demo\\/daisy-wp\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4f7a79714aaca6efc0ce4f7c933538cc\"},{\"id\":\"53a6de8b-9098-40bf-a57d-718e0a141528\",\"name\":\"Birch A Responsive WordPress Theme\",\"slug\":\"birch-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/birch-a-responsive-wordpress-theme\",\"sales_count\":2479,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"translation, tablet, iphone, photography, seo, retina, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, eco, service, natural, agriculture, bio, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, travel, modern, creative, woocommerce, mobile, multipurpose, ipad\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-368x296-gh5uf.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-136x136-GjY4S.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53a6de8b-9098-40bf-a57d-718e0a141528-260x156-aZts2.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-5fL3L.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-7s31Z.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-XeafI.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-611h4.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-YtsTh.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-LuRcX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-tilmc.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-wGrWo.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-QNS9l.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-9DbiX.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53a6de8b-9098-40bf-a57d-718e0a141528-1800x1800-0wjF6.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53a6de8b-9098-40bf-a57d-718e0a141528-1180x660-tS7VZ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"SEO Ready\",\"Powerful Admin Panel\",\"Responsive Design\"],\"created\":\"2014-06-22 08:00:22\",\"created_timestamp\":1403445622,\"demo_url\":\"https:\\/\\/birch.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"5444f3ed-49bc-4484-9264-0f5c0a140b28\",\"name\":\"Zephyr A Beautiful WordPress Blog Theme\",\"slug\":\"zephyr-a-beautiful-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zephyr-a-beautiful-wordpress-blog-theme\",\"sales_count\":1513,\"is_service\":false,\"rating\":4.9,\"seller_name\":\"themeflame\",\"seller_url\":\"store\\/themeflame\",\"tags\":\"travel wordpress theme, Food Blog, instagram, responsive, beautiful, clean, beautiful design, modern, WordPress, HTML5, CSS3, fashion, agency, personal, Slider, news, retina, restaurant, minimal, multipurpose, design, elegant, flat, simple, Blog WordPress Themes, Blogger, Grid Blog, photoblog, personal blog, wordpress blog theme, photography blog, blog modern, health, wordpress blog, fashion blog, pretty blog, clean blog, blogging theme, family, theme, blogging wordpress theme, minimalist, wordpress themes, minimal design, simple wordpress theme, personal blog theme, wordpress theme, Personal WordPress Theme, wordpress templates, Personal WordPress Themes, wordpress mobile, personal site, food theme, blog minimal, mommy, seo, fashion theme, customizer, fashion template, layouts, foodie, fashionista, travel, blog, blogging, travelling blog, food\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-368x296-8Di6N.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-136x136-zMAwr.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5444f3ed-49bc-4484-9264-0f5c0a140b28-260x156-PQ45k.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5444f3ed-49bc-4484-9264-0f5c0a140b28-1800x1800-TtFpS.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5444f3ed-49bc-4484-9264-0f5c0a140b28-1180x660-S6J6V.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Blog and Portfolio Page\",\"Responsive Layout\"],\"created\":\"2014-10-20 06:11:25\",\"created_timestamp\":1413807085,\"demo_url\":\"http:\\/\\/themeflame.com\\/zephyr\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"13f401b35fbfa320cf306a891828f876\"},{\"id\":\"5659d4bf-6b80-434a-b566-64870a141f38\",\"name\":\"FREYJA Personal WordPress Theme for Bloggers\",\"slug\":\"freyja-personal-wordpress-theme-for-bloggers\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/freyja-personal-wordpress-theme-for-bloggers\",\"sales_count\":1432,\"is_service\":false,\"rating\":4.6,\"seller_name\":\"SparrowAndSnow\",\"seller_url\":\"store\\/sparrow-and-snow\",\"tags\":\"audio, instagram, lifestyle, clean, simple, responsive, travel, food, elegant, design, modern, creative, easy, gallery, personal, fashion, photographer, video, Blogger\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58fe8554-6868-418f-a6ed-69a80a141539-6bIxM.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5659d4bf-6b80-434a-b566-64870a141f38-ch13X.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-zo4DU.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-6Vq6I.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-uoyC5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-mqENt.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-yl6Bs.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-EycmZ.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5659d4bf-6b80-434a-b566-64870a141f38-w5O3O.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58fe8554-6868-418f-a6ed-69a80a141539-nWtg4.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"10 Blog Layout\",\"Retina Ready\",\"Translation Ready\"],\"created\":\"2015-11-28 09:23:17\",\"created_timestamp\":1448727797,\"demo_url\":\"http:\\/\\/sparrowandsnow.com\\/freyja\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be9598299f6d395d43fa63d9ec92b3f1\"},{\"id\":\"51803aa2-7ec8-4ff0-b206-09fb0a140b1e\",\"name\":\"Aegaeus Ultimate Multi-Purpose WordPress Theme\",\"slug\":\"aegaeus-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aegaeus-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1380,\"is_service\":false,\"rating\":3.9,\"seller_name\":\"HB-Themes\",\"seller_url\":\"store\\/hb-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, Corporate, shop, magazine, news, design, music, modern, support, woocommerce, mobile, gallery, multipurpose, brankocee, ipad, agency, light, iphone, photography, white, videos, company, megamenu, sticky\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-368x296-KcSoi.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-136x136-gxRF6.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-260x156-J3rcd.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot1-mm-resize-1546x1800.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1800x1800-Hijw4.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot_1800-mm-resize-1800x857.jpg\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/screen_shots-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-screenshot2-mm-resize-1546x1800.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51803aa2-7ec8-4ff0-b206-09fb0a140b1e-1180x660-CugyQ.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Unlimited Colors\",\"Translation Ready\",\"WordPress 3.5+ Ready\"],\"created\":\"2013-04-30 15:50:55\",\"created_timestamp\":1367358655,\"demo_url\":\"http:\\/\\/hb-themes.com\\/themes\\/aegaeus_wp\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"78ac157401b0f7ac1c0be083b84831e5\"},{\"id\":\"55233c6f-c31c-4ab8-8023-0d350a141f3c\",\"name\":\"Wunderful Clean &amp; Minimal WordPress Blog Theme\",\"slug\":\"wunderful-clean-amp-minimal-wordpress-blog-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wunderful-clean-amp-minimal-wordpress-blog-theme\",\"sales_count\":1376,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeDsgn\",\"seller_url\":\"store\\/themedsgn\",\"tags\":\"clean, simple, responsive, blog, minimal, WordPress, travel, music, modern, woocommerce, personal, blogging, fashion, recipe\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-136x136-8XtlH.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55233c6f-c31c-4ab8-8023-0d350a141f3c-260x156-B9ll6.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55233c6f-c31c-4ab8-8023-0d350a141f3c-1800x1800-C6jAi.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55233c6f-c31c-4ab8-8023-0d350a141f3c-1180x660-Rk6wt.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean, Elegant &amp; Responsive Layout\",\"Easy to Install &amp; Setup\",\"Suitable for Any Blog\"],\"created\":\"2015-04-06 20:44:54\",\"created_timestamp\":1428374694,\"demo_url\":\"http:\\/\\/themes.themedsgn.com\\/wunderful\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"6a91f75d7b640a42445fafc86a421ac1\"},{\"id\":\"53589542-c8f4-491e-ad1e-29c90a141528\",\"name\":\"Nectar A Responsive WordPress Theme\",\"slug\":\"nectar-a-responsive-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nectar-a-responsive-wordpress-theme\",\"sales_count\":1374,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, photography, seo, retina, fashion, Custom, startup, Fitness, church, office, cafe, environmental, sports, eco, service, organic, natural, customize, agriculture, clean, responsive, portfolio, blog, minimal, Business, WordPress, Corporate, Green, travel, modern\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-368x296-BWaK1.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-136x136-0pPAV.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53589542-c8f4-491e-ad1e-29c90a141528-MZJXd.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-WwuAA.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-rVJ4N.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YWsAd.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-qGPwW.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-JMt5C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-YSJik.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-2hEmp.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-ZMB1W.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-53589542-c8f4-491e-ad1e-29c90a141528-1800x1800-B6hX8.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53589542-c8f4-491e-ad1e-29c90a141528-1180x660-oTokc.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Clean and Modern\",\"WooCommerce\",\"Responsive Design\"],\"created\":\"2014-04-23 23:04:45\",\"created_timestamp\":1398315885,\"demo_url\":\"https:\\/\\/nectar.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"54626dc3-c4d8-40b3-b441-3ff60a141528\",\"name\":\"Nimva Ultimate Multi Purpose WordPress Theme\",\"slug\":\"nimva-ultimate-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/nimva-ultimate-multi-purpose-wordpress-theme\",\"sales_count\":1348,\"is_service\":false,\"rating\":5,\"seller_name\":\"rockythemes\",\"seller_url\":\"store\\/rockythemes\",\"tags\":\"responsive, Business, clean, minimal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-136x136-7Bg7b.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54626dc3-c4d8-40b3-b441-3ff60a141528-260x156-Vucki.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-UomN2.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-FYTxh.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-WktDL.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-rlk5m.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-8RwBo.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54626dc3-c4d8-40b3-b441-3ff60a141528-1800x1800-3DFLY.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54626dc3-c4d8-40b3-b441-3ff60a141528-1180x660-uEBMb.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Powerful Admin Panel\",\"Retina Ready\",\"Drag and Drop Visual Composer elements\"],\"created\":\"2014-11-11 14:27:09\",\"created_timestamp\":1415741229,\"demo_url\":\"http:\\/\\/rockythemes.com\\/nimva\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e8fb8041fbc423c2b44f546e7ea5bd27\"},{\"id\":\"57c43604-3e40-4824-9219-1cc70a14153b\",\"name\":\"The Core Multi-Purpose WordPress Theme\",\"slug\":\"the-core-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/the-core-multi-purpose-wordpress-theme\",\"sales_count\":1317,\"is_service\":false,\"rating\":5,\"seller_name\":\"ThemeFuse\",\"seller_url\":\"store\\/themefuse\",\"tags\":\"catering, events, kindergarten, architecture, lawyers, responsive, blog, Business, WordPress, Corporate, medical, magazine, restaurant, creative, agency, charity, bakery, cleaning, wedding, church\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57c43604-3e40-4824-9219-1cc70a14153b-KHmWi.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5928264a-c4f8-4dcc-91d9-56040a141539-HFsZg.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5928264a-c4f8-4dcc-91d9-56040a141539-mXR7A.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57c43604-3e40-4824-9219-1cc70a14153b-vgV3U.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5928264a-c4f8-4dcc-91d9-56040a141539-zQKuI.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"20 Website Demos Included (more to come for FREE)\",\"1 Click  Demo Install\",\"Visual Page Builder\"],\"created\":\"2016-08-29 07:18:34\",\"created_timestamp\":1472476714,\"demo_url\":\"https:\\/\\/demo.themefuse.com\\/the-core\\/?market_referrer=mojo\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fe54e73e29cac33917ee48ab110b9bef\"},{\"id\":\"532798c5-2834-440b-8469-255a0a141528\",\"name\":\"Creative Blog WordPress Theme\",\"slug\":\"creative-blog-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/creative-blog-wordpress-theme\",\"sales_count\":1125,\"is_service\":false,\"rating\":3,\"seller_name\":\"DessignThemes\",\"seller_url\":\"store\\/dessign-themes\",\"tags\":\"portfolio, blog, photography\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-532798c5-2834-440b-8469-255a0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-532798c5-2834-440b-8469-255a0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-532798c5-2834-440b-8469-255a0a141528-260x156.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/screen_shots-532798c5-2834-440b-8469-255a0a141528-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-532798c5-2834-440b-8469-255a0a141528-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Responsive Layout\",\"Slider Video Feature\",\"Theme Options panel\"],\"created\":\"2014-03-17 19:15:51\",\"created_timestamp\":1395105351,\"demo_url\":\"http:\\/\\/www.dessign.net\\/creativeblogtheme\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"12a1f004a6ed51582a3f0de432cf020d\"},{\"id\":\"55dd6a85-24f0-438a-8723-1ea40a141f38\",\"name\":\"Solstice Elegant WordPress Theme\",\"slug\":\"solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/solstice-an-elegant-versatile-and-responsive-wordpress-theme-for-blogging-and-business\",\"sales_count\":1057,\"is_service\":false,\"rating\":5,\"seller_name\":\"BottomlessThemes\",\"seller_url\":\"store\\/bottomless-themes\",\"tags\":\"responsive, portfolio, blog, minimal, Business, WordPress, travel, modern, creative, woocommerce, mobile, multipurpose, ipad, translation, tablet, iphone, photography, seo, retina, customizer, fashion, video, Custom, startup, Fitness, church, Testimonials, office, cafe, environmental, sports, service, natural, customize, agriculture, bio, clean\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-368x296-czJN9.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-136x136-3WX3a.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55dd6a85-24f0-438a-8723-1ea40a141f38-260x156-5GLPx.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-pgETy.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fczJB.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9seWT.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-wZDz0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-fQWmi.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-x1Kc0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-TZba1.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9BUzz.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-iA29C.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-OWTE0.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-9sIUv.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-tfE7f.png\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55dd6a85-24f0-438a-8723-1ea40a141f38-1800x1800-AYepv.png\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55dd6a85-24f0-438a-8723-1ea40a141f38-1180x660-Io87q.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Plugin Compatible \",\"Responsive Layout\",\"Customizer\"],\"created\":\"2015-08-26 02:03:32\",\"created_timestamp\":1440576212,\"demo_url\":\"https:\\/\\/solstice.bottomlessthemes.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"74ed870a9f8a5d46a544ce7026827b68\"},{\"id\":\"55e0a4cb-394c-4af9-b480-01610a141f37\",\"name\":\"Amiable A WordPress Blogging Theme\",\"slug\":\"amiable-a-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amiable-a-wordpress-blogging-theme\",\"sales_count\":764,\"is_service\":false,\"rating\":5,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, clean, modern, WordPress, blog, fashion, retina, food, mobile, photography, minimal, gallery, Slider, personal, magazine, news, simple, travel, blogging, video, theme, support\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-368x296-YUEWQ.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-136x136-0T1lk.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55e0a4cb-394c-4af9-b480-01610a141f37-260x156-c46rC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-s9CU7.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-Y49gi.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55e0a4cb-394c-4af9-b480-01610a141f37-1800x1800-M5MTN.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55e0a4cb-394c-4af9-b480-01610a141f37-1180x660-nRwUj.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Responsive Layout\",\"Clean and Professional Design\",\"Easy to Set Up\"],\"created\":\"2015-08-28 13:07:12\",\"created_timestamp\":1440788832,\"demo_url\":\"http:\\/\\/amiable.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"544f515e-80bc-4880-a17d-56cc0a141528\",\"name\":\"Credence A Wonderful Multi-Purpose WordPress Theme\",\"slug\":\"credence-a-wonderful-multi-purpose-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/credence-a-wonderful-multi-purpose-wordpress-theme\",\"sales_count\":756,\"is_service\":false,\"rating\":4.8,\"seller_name\":\"sh-themes\",\"seller_url\":\"store\\/sh-themes\",\"tags\":\"clean, responsive, portfolio, blog, Business, WordPress, news, modern, premium, woocommerce, multipurpose, photography, customizable, church, wpml, Multisite, exclusive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-136x136-90nsF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-544f515e-80bc-4880-a17d-56cc0a141528-260x156-nRhu9.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-544f515e-80bc-4880-a17d-56cc0a141528-1800x1800-qpHxv.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-544f515e-80bc-4880-a17d-56cc0a141528-1180x660-zkSx1.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"Fully Responsive, Retina Ready\",\"The Most Powerful Features\",\"Unlimited Design Possibilities\"],\"created\":\"2014-10-28 02:38:39\",\"created_timestamp\":1414485519,\"demo_url\":\"http:\\/\\/demo.sh-themes.com\\/credence\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"18a26bdf8bc503c3f2795bd133d51873\"},{\"id\":\"55b4af45-6248-4025-846b-39650a141f38\",\"name\":\"Semplice An Elegant WordPress Blogging Theme\",\"slug\":\"semplice-an-elegant-wordpress-blogging-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/semplice-an-elegant-wordpress-blogging-theme\",\"sales_count\":743,\"is_service\":false,\"rating\":4.2,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"Slider, music, creative, gallery, grid, personal, retina, facebook, fashion, video, beauty, instagram, lifestyle, clean, responsive, blog\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b4af45-6248-4025-846b-39650a141f38-368x296-HQfZe.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b4af45-6248-4025-846b-39650a141f38-VBSIh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b4af45-6248-4025-846b-39650a141f38-kG44U.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-R9zHx.jpg\",\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-55b4af45-6248-4025-846b-39650a141f38-1800x1800-rzpoq.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b4af45-6248-4025-846b-39650a141f38-DnvmC.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Powerful Admin Panel\",\"Responsive Layout\",\"Clean and professional design\"],\"created\":\"2015-07-26 05:11:26\",\"created_timestamp\":1437909086,\"demo_url\":\"http:\\/\\/semplice.sculptureqode.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"57d18606-e938-4cf2-b0af-4c780a14153a\",\"name\":\"Blogger Clean and Minimal WordPress Theme for Blog\",\"slug\":\"blogger-clean-and-minimal-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/blogger-clean-and-minimal-wordpress-theme-for-blog\",\"sales_count\":666,\"is_service\":false,\"rating\":4,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"news, simple, elegant, travel, wordpress theme, blogging, Blog WordPress Themes, wordpress templates, wordpress themes, portfolio, minimal, gallery, clean, responsive, blog, WordPress, creative, photography, fashion, multipurpose, personal, magazine\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-SpauU.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57d18606-e938-4cf2-b0af-4c780a14153a-RtbC3.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57d18606-e938-4cf2-b0af-4c780a14153a-Ks7Xi.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57d18606-e938-4cf2-b0af-4c780a14153a-F1uTT.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Fully Responsive\",\"Easy to Use and Install\",\"Multiple Blog Layouts\"],\"created\":\"2016-09-08 09:39:26\",\"created_timestamp\":1473349166,\"demo_url\":\"http:\\/\\/gbthemes.net\\/blogger\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"528b47c8-7fc4-4ad5-a1e9-39980a140b24\",\"name\":\"Trias Multi-Style Corporate WordPress Theme\",\"slug\":\"trias-multi-style-corporate-wordpress-theme\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/trias-multi-style-corporate-wordpress-theme\",\"sales_count\":663,\"is_service\":false,\"rating\":2.5,\"seller_name\":\"CodexThemes\",\"seller_url\":\"\",\"tags\":\"clean, responsive, portfolio, Business, Corporate, design, creative, products, agency, template, marketing, projects, service, style, consulting\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-528b47c8-7fc4-4ad5-a1e9-39980a140b24-thumb260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-528b47c8-7fc4-4ad5-a1e9-39980a140b24-screenshot-mm-resize-1800x1800.jpg\"],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-528b47c8-7fc4-4ad5-a1e9-39980a140b24-prev-mm-resize-1180x660.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"psd_files\"],\"prices\":{\"single_domain_license\":\"59.00\",\"5_domain_license\":\"236.00\",\"developer_license\":\"1475.00\"},\"features\":[\"100% Responsive &amp; Mobile Ready\",\"Homepage Constructor \",\"Unlimited colors\"],\"created\":\"2013-11-19 05:00:41\",\"created_timestamp\":1384862441,\"demo_url\":\"http:\\/\\/codex-themes.com\\/trias\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"44b134143c71bcded094a8c3c2c3def1\"},{\"id\":\"54d0ee9c-6544-4bcd-abc2-70e40a141528\",\"name\":\"ZenBlog Lovely WordPress Theme for Blog\",\"slug\":\"zenblog-lovely-wordpress-theme-for-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/zenblog-lovely-wordpress-theme-for-blog\",\"sales_count\":649,\"is_service\":false,\"rating\":5,\"seller_name\":\"GbThemes\",\"seller_url\":\"store\\/gbthemes\",\"tags\":\"personal, blogging, simple wordpress theme, blog, responsive, modern, photography, creative, clean, wordpress theme, wordpress template, fashion, minimal, seo, mobile\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-368x296-rxsEu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-136x136-l3tMq.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54d0ee9c-6544-4bcd-abc2-70e40a141528-260x156-tOGvX.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-54d0ee9c-6544-4bcd-abc2-70e40a141528-1800x1800-MthMx.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54d0ee9c-6544-4bcd-abc2-70e40a141528-WSCQ3.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Clean and Professional Design\",\"Powerful Admin Panel\",\"Responsive Layout\"],\"created\":\"2015-02-03 08:57:43\",\"created_timestamp\":1422979063,\"demo_url\":\"http:\\/\\/gbthemes.net\\/zenblog\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"e40ccfc7ae91a1cd4e8a2b828b7c2978\"},{\"id\":\"5187560e-4164-4925-9eb3-77c20a140b1e\",\"name\":\"BlueBird  Beautiful WordPress Theme for Personal Blog\",\"slug\":\"bluebird-beautiful-wordpress-theme-for-personal-blog\",\"category\":\"WordPress\",\"type\":\"themes\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bluebird-beautiful-wordpress-theme-for-personal-blog\",\"sales_count\":590,\"is_service\":false,\"rating\":0,\"seller_name\":\"justgoodthemes\",\"seller_url\":\"store\\/just-good-themes\",\"tags\":\"lifestyle, clean, simple, responsive, blog, minimal, WordPress, jQuery, blue, HTML5, food, elegant, personal, blogging, Free Installation Service, retina, beautiful, tabs, classic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-368x296-Xt1nC.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-136x136-uV7Iw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5187560e-4164-4925-9eb3-77c20a140b1e-260x156-l7RPT.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5187560e-4164-4925-9eb3-77c20a140b1e-1800x1800-FdkGn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5187560e-4164-4925-9eb3-77c20a140b1e-kY6QR.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Custom page templates for full-width pages and blog archives\",\"Responsive layout\",\"Retina ready \\u2013 all icons are optimized for retina devices\"],\"created\":\"2013-05-06 01:18:38\",\"created_timestamp\":1367824718,\"demo_url\":\"https:\\/\\/justgoodthemes.net\\/bluebird\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"61db66e9c23bb2cea94225f065516187\"}],\"page\":1,\"pageCount\":49,\"records\":972}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:13:\"cache-control\";a:1:{i:0;s:3:\"900\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:50 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.12.0\";}s:10:\"set-cookie\";a:1:{i:0;s:143:\"SESSION=tukjbjnhmtk8b4ra0anme119v3; expires=Sat, 05-Aug-2017 03:48:49 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.30\";}s:14:\"content-length\";a:1:{i:0;s:5:\"49901\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:98:\"https://api.mojomarketplace.com/api/v2/items?category=wordpress&type=themes&count=20&order=popular\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"tukjbjnhmtk8b4ra0anme119v3\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"expires\";i:1501904929;s:7:\"max-age\";i:1501904930;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:6:\"secure\";b:1;s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501544930;s:11:\"last-access\";i:1501544930;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501544930;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"5e600d70ca93b82ff4646f4aa16ae55e\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";s:1:\"*\";s:13:\"cache-control\";s:3:\"900\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:50 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:10:\"set-cookie\";s:143:\"SESSION=p30q3d57meh7d78bm0nj0vgqn3; expires=Sat, 05-Aug-2017 03:48:50 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:14:\"content-length\";s:5:\"57962\";}}s:4:\"body\";s:57962:\"{\"status\":\"success\",\"items\":[{\"id\":\"57fc0ac0-d508-4ece-b096-041e0a14153b\",\"name\":\"Constant Contact Forms For WordPress\",\"slug\":\"constant-contact-forms-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/constant-contact-forms-for-wordpress\",\"sales_count\":1738,\"is_service\":false,\"rating\":0,\"seller_name\":\"CTCT\",\"seller_url\":\"store\\/constant-contact\",\"tags\":\"WordPress, plugins, plugin\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57fc0ac0-d508-4ece-b096-041e0a14153b-QZ0bW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57fc0ac0-d508-4ece-b096-041e0a14153b-7uenP.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-0PRzB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-cKWzO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-AzsJ5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-2dJiP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-2dJiP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-cKWzO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-0PRzB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-AzsJ5.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57fc0ac0-d508-4ece-b096-041e0a14153b-4iVnr.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Capture Visitor Information Right From Your WordPress Site\",\"Create Easy To Install-Forms that Match Your WP Theme\",\"Customize Data Fields, So You Can Tailor The Information You Coll\"],\"created\":\"2016-10-10 15:40:46\",\"created_timestamp\":1476135646,\"demo_url\":\"https:\\/\\/cl.ly\\/3z3p2Y3b1d1Y\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d8351e3b1400f222097db205c3729c64\"},{\"id\":\"565f4b5d-4dcc-48c4-8059-3de40a141f38\",\"name\":\"Product Vendors - Plugin for WordPress\",\"slug\":\"product-vendors-plugin-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-vendors-plugin-for-wordpress\",\"sales_count\":1024,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, woocommerce, accounting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4b5d-4dcc-48c4-8059-3de40a141f38-2MCs2.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4b5d-4dcc-48c4-8059-3de40a141f38-pbL75.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-yP02g.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-Fv652.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-U79BI.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4b5d-4dcc-48c4-8059-3de40a141f38-ePpeq.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"10.00\",\"5_domain_license\":\"40.00\",\"developer_license\":\"250.00\"},\"features\":[\"Accessible And Readable Reports For You And Your Vendors\",\"Manage Product Tags\",\"Manage Your Commissions With Ease\"],\"created\":\"2015-12-02 12:53:01\",\"created_timestamp\":1449085981,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/product-vendors\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565f4800-ef44-49e2-8c7a-1b160a141f37\",\"name\":\"TradeGecko Inventory Management for WordPress\",\"slug\":\"tradegecko-inventory-management-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/tradegecko-inventory-management-for-wordpress\",\"sales_count\":400,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, accounting, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4800-ef44-49e2-8c7a-1b160a141f37-oSPDm.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4800-ef44-49e2-8c7a-1b160a141f37-zXZmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4800-ef44-49e2-8c7a-1b160a141f37-HKwaB.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4800-ef44-49e2-8c7a-1b160a141f37-MPSbW.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"10.00\",\"5_domain_license\":\"40.00\",\"developer_license\":\"250.00\"},\"features\":[\"Integrate your WooCommerce Store with TradeGecko\",\"Multi-Channel Sales Management\",\"Order Management Platform\"],\"created\":\"2015-12-02 12:40:07\",\"created_timestamp\":1449085207,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/woocommerce-tradegecko\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"567aabcb-9f9c-43bb-97b6-1b660a141f37\",\"name\":\"Contact Form Plugin WP Contact Forms with CAPTCHA &amp; Validation\",\"slug\":\"advanced-wordpress-contact-form-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/advanced-wordpress-contact-form-plugin\",\"sales_count\":159,\"is_service\":false,\"rating\":5,\"seller_name\":\"htmlpie\",\"seller_url\":\"store\\/htmlpie\",\"tags\":\"email, ajax, contact, message, captcha, validation, localization, shortcode, spam, responsive, mobile, newsletter, widget, form\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58f7adc8-c67c-4294-b42f-1f5a0a141539-Exwvg.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58f7adc8-c67c-4294-b42f-1f5a0a141539-M8ab7.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-WuQcg.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-ZNycn.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8MO33.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8iaHy.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-kgMxM.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8lu19.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-GAolw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-Q6KrR.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-567aabcb-9f9c-43bb-97b6-1b660a141f37-4n2sg.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Built-in CAPTCHA and Validation\",\"Tons of Ready-Made CSS3 Styles Included\",\"Automatic Plugin Update\"],\"created\":\"2015-12-23 07:13:14\",\"created_timestamp\":1450879994,\"demo_url\":\"https:\\/\\/www.htmlpie.com\\/preview\\/wordpress-contact-form-plugin?ref=mojomarketplace\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"dfbdb474052f63e677f6ae8cd239639a\"},{\"id\":\"565f4f34-f7a4-44b6-95d4-490a0a141f38\",\"name\":\"PayPal Pro Credit Card Gateway Plugin\",\"slug\":\"paypal-pro-credit-card-gateway-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/paypal-pro-credit-card-gateway-plugin\",\"sales_count\":69,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"Business, account, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4f34-f7a4-44b6-95d4-490a0a141f38-lsaRh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4f34-f7a4-44b6-95d4-490a0a141f38-RcvRT.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4f34-f7a4-44b6-95d4-490a0a141f38-as1x2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4f34-f7a4-44b6-95d4-490a0a141f38-DIR4m.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Checkout Process\",\"Take Credit Card Payments Directly\",\"Easy to integrate\"],\"created\":\"2015-12-02 13:08:02\",\"created_timestamp\":1449086882,\"demo_url\":\"https:\\/\\/www.paypal.com\\/webapps\\/mpp\\/paypal-payments-pro\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"57a3b773-3038-430b-a6c0-0ab90a14153b\",\"name\":\"Visitor Statistics Site Visitor Statistics for WordPress\",\"slug\":\"mystat-site-visitor-statistics-for-wordpress-7\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/mystat-site-visitor-statistics-for-wordpress-7\",\"sales_count\":56,\"is_service\":false,\"rating\":0,\"seller_name\":\"mystat\",\"seller_url\":\"store\\/mystat\",\"tags\":\"analytics, statistics, WordPress, seo, widgets, professional, simple\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-59280b02-0030-4de6-a19d-5f050a141539-LZxGv.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-59280b02-0030-4de6-a19d-5f050a141539-CdVDh.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-FAr07.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-AuEQa.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-lki78.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-6lchg.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-RoDop.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-1tmpe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-eRwBo.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-PQ3md.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-MSqw7.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-qJfZN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-Z4SFa.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-EsLWh.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-59280b02-0030-4de6-a19d-5f050a141539-Z0S8N.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Statistics\",\"Security\",\"Analytics\"],\"created\":\"2016-08-04 15:47:29\",\"created_timestamp\":1470347249,\"demo_url\":\"http:\\/\\/my-stat.com\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"67ef2b46dcaaacbf476647c4ce8fc62d\"},{\"id\":\"565f506a-aaac-4997-8787-4fcd0a141f38\",\"name\":\"Amazon Pay Payments - WooCommerce Plugin\",\"slug\":\"amazon-payments-woocommerce-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amazon-payments-woocommerce-plugin\",\"sales_count\":51,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"free, accounting, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f506a-aaac-4997-8787-4fcd0a141f38-uspuS.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f506a-aaac-4997-8787-4fcd0a141f38-Wx9pL.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f506a-aaac-4997-8787-4fcd0a141f38-XhLz7.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f506a-aaac-4997-8787-4fcd0a141f38-W9cWe.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Mobile-Optimized Widgets\",\"Site Retention\",\"Amazon Fraud Protection\"],\"created\":\"2015-12-02 13:15:02\",\"created_timestamp\":1449087302,\"demo_url\":\"https:\\/\\/sellercentral.amazon.com\\/ap\\/signin?_encoding=UTF8&amp;create=1&amp;openid.assoc_handle=amzn_urp_na&amp;openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&amp;openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&amp;openid.mode=checkid_setup&amp;openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&amp;openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&amp;openid.pape.max_auth_age=0&amp;openid.return_to=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fon-board%2Fworkflow%2FRegistration%2Flogin.html%3Fie%3DUTF8%26isAuthPortalRedirected%3D1%26passthrough%252F*Version*%3D1%26passthrough%252F*entries*%3D0%26passthrough%252Faccount%3Dpyop%26passthrough%252Fld%3DAPRPWOOCOMMERCE%26passthrough%252FmarketplaceID%3DAGWSWK15IEJJ7%26passthrough%252FsimplifiedLogin%3D1%26passthrough%252Fsource%3Dinternal-landing-select%26passthrough%252FsuperSource%3DOAR%26passthrough%252FwaiveFee%3D1&amp;pageId=pyop\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5739b161-5e88-4728-a32d-1e5f0a140b32\",\"name\":\"Product Enquiry Pro (a.k.a. QuoteUp)\",\"slug\":\"product-enquiry-pro-a-k-a-quoteup\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-enquiry-pro-a-k-a-quoteup\",\"sales_count\":50,\"is_service\":false,\"rating\":0,\"seller_name\":\"WisdmLabs\",\"seller_url\":\"store\\/wisdmlabs\",\"tags\":\"Inquiry\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5739b161-5e88-4728-a32d-1e5f0a140b32-6YCv3.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5739b161-5e88-4728-a32d-1e5f0a140b32-c0Eyz.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-zdcWU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-IhFF5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-u0iQ8.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-2mGch.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QCRvi.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-b0lZR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jiQVI.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-qbtkO.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-0nTzd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WkJ0G.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-y2cZN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-HjJXP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-r6wgA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-fyKCl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-PC6gA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jEgTa.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-a1Cj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-NKCkG.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-srnUw.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yXGj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-7c3HT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jWqLC.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-nrVwo.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Eu55C.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yVjEw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EYBpJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-c6yM1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-xizTU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QOamp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-cIyPC.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LtqB1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-TRPgd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-3alqh.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-paYy0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LqYZn.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-4OtgT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-9xAlJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-KwI77.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-pyXm0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-dmXwN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-XRmLU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WuQ35.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-vAixT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-GHCXL.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EMDEO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-e58XN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Vgvtd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-FY2Yw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-fyKCl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QCRvi.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-0nTzd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-a1Cj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-cIyPC.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-paYy0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-7c3HT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Eu55C.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-GHCXL.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-HjJXP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-IhFF5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-c6yM1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-KwI77.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-XRmLU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Vgvtd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-b0lZR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-PC6gA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-NKCkG.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LtqB1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WkJ0G.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yVjEw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LqYZn.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EMDEO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-r6wgA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-u0iQ8.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jWqLC.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-xizTU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WuQ35.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-FY2Yw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jiQVI.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-TRPgd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-srnUw.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-pyXm0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-zdcWU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-4OtgT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-2mGch.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-nrVwo.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jEgTa.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-qbtkO.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-e58XN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QOamp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-vAixT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yXGj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-3alqh.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-y2cZN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EYBpJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-dmXwN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-9xAlJ.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5739b161-5e88-4728-a32d-1e5f0a140b32-fqYwA.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"39.00\",\"5_domain_license\":\"156.00\",\"developer_license\":\"975.00\"},\"features\":[\"Add Inquiry Button under each product on your Shop Page\",\"Customizable Enquiry Form\",\"Fully Responsive\"],\"created\":\"2016-05-16 05:42:19\",\"created_timestamp\":1463398939,\"demo_url\":\"quoteup.wisdmlabs.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c3d69f74d7cb90fdb0502ac64f509d25\"},{\"id\":\"57ad9c9b-9438-4efd-a3cf-3cb40a14153a\",\"name\":\"Hide My WordPress Hide My WordPress PRO- Best Security 2017\",\"slug\":\"hide-my-wordpress-pro-security-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/hide-my-wordpress-pro-security-plugin\",\"sales_count\":40,\"is_service\":false,\"rating\":0,\"seller_name\":\"johnd\",\"seller_url\":\"store\\/wpplugins\",\"tags\":\"security, best sellers, hide, WordPress, plugin, wplugin, login, Admin Login, admin\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5924fb86-2f74-4e96-8f8e-53560a141f3e-dkRGs.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5924fb86-2f74-4e96-8f8e-53560a141f3e-QeGTz.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5924fb86-2f74-4e96-8f8e-53560a141f3e-2Nm2L.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-wxSxb.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-pouGp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-27liB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-dyCkD.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-qiqvP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58f08514-9a60-4399-818a-06730a14153b-CuITJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-pOyFW.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-gWyDl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-QOPCs.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-Qjw0O.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-u8y1y.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-wyjgj.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5924fb86-2f74-4e96-8f8e-53560a141f3e-KXrMa.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"29.00\",\"5_domain_license\":\"116.00\",\"developer_license\":\"725.00\"},\"features\":[\"Support for WordPress Multi Sites, Apache, Nginx and LiteSpeed \",\"Safe and Fast Plugin for WordPress\",\"Protect Your WordPress Site \"],\"created\":\"2016-08-12 03:53:51\",\"created_timestamp\":1470995631,\"demo_url\":\"http:\\/\\/test.wpplugins.tips\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be0877006f3b74c66893473a71c5374b\"},{\"id\":\"51e0385c-fb50-480b-ab02-64b60a140b24\",\"name\":\"Domain For Sale Domain Auction Plugin For WordPress\",\"slug\":\"this-domain-is-for-sale-wordpress-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/this-domain-is-for-sale-wordpress-plugin\",\"sales_count\":38,\"is_service\":false,\"rating\":0,\"seller_name\":\"htmlpie\",\"seller_url\":\"store\\/htmlpie\",\"tags\":\"offer, buy, sell, domain, sale, auction, csv, price, bid, park, email, mail, parking, marketplace, quote\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-8gc04.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_backend_screenshot-mm-resize-1800x1800.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-QCT1V.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51e0385c-fb50-480b-ab02-64b60a140b24-xbchz.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"15.00\",\"5_domain_license\":\"60.00\",\"developer_license\":\"375.00\"},\"features\":[\"One Single WordPress Installation For All Your Domains\",\"Highly Customizable\",\"Auction and Fixed-Price Sales\"],\"created\":\"2013-07-12 11:50:00\",\"created_timestamp\":1373651400,\"demo_url\":\"https:\\/\\/www.htmlpie.com\\/preview\\/domain-for-sale-wordpress-plugin\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"dfbdb474052f63e677f6ae8cd239639a\"},{\"id\":\"565f5da6-70d8-4e67-ad3b-5dc10a141f38\",\"name\":\"Product Add-ons - WooCommerce Add-on\",\"slug\":\"product-add-ons-woocommerce-add-on\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-add-ons-woocommerce-add-on\",\"sales_count\":34,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, utilities, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f5da6-70d8-4e67-ad3b-5dc10a141f38-NxrIO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f5da6-70d8-4e67-ad3b-5dc10a141f38-WP4O7.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f5da6-70d8-4e67-ad3b-5dc10a141f38-RNNTM.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f5da6-70d8-4e67-ad3b-5dc10a141f38-xbFlV.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f5da6-70d8-4e67-ad3b-5dc10a141f38-7RYy3.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Create Additional Product Personalization Options\",\"Easy to Integrate\",\"Customize\"],\"created\":\"2015-12-02 14:07:56\",\"created_timestamp\":1449090476,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/product-add-ons\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"56cec6a0-adf4-4ff2-ae09-5d6a0a141f37\",\"name\":\"TZ Plus Gallery WordPress Social Gallery Plugin\",\"slug\":\"tz-plus-gallery-wordpress-social-gallery-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/tz-plus-gallery-wordpress-social-gallery-plugin\",\"sales_count\":33,\"is_service\":false,\"rating\":1,\"seller_name\":\"templazavn\",\"seller_url\":\"store\\/templaza\",\"tags\":\"social, media, gallery, facebook, google, instagram, flickr, album\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-Y8Qij.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-vIRqv.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-a10LU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-L7gqx.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-ZShrh.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-oQhR5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-iJE1Q.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-W3Q1L.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-Ewkwp.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-dPDRF.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-R3U9y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Fully Responsive\",\"Facebook, Flickr, Instagram, Google+, WordPress Gallery\",\"28 Example Skins\"],\"created\":\"2016-02-25 02:18:03\",\"created_timestamp\":1456391883,\"demo_url\":\"http:\\/\\/wordpress.templaza.net\\/plugins\\/tzplusgallery\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c15b4a9ff53c735d6a37b3eb599b2f05\"},{\"id\":\"565cccfd-2ef4-4609-bc33-49f60a141f38\",\"name\":\"USPS Shipping Method for WooCommerce\",\"slug\":\"usps-shipping-method-for-woocommerce\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/usps-shipping-method-for-woocommerce\",\"sales_count\":28,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"woocommerce, shipping, utilities\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565cccfd-2ef4-4609-bc33-49f60a141f38-vVLVV.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565cccfd-2ef4-4609-bc33-49f60a141f38-9e1mN.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-7QB3H.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-7QB3H.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-0BAMw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-0BAMw.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565cccfd-2ef4-4609-bc33-49f60a141f38-KhuD0.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Pack Items Individually\",\"Calculates Quotes Worldwide\",\"Real-Time Shipping Rates\"],\"created\":\"2015-11-30 15:26:52\",\"created_timestamp\":1448922412,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/usps-shipping-method\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565ccac1-5c24-4bba-8093-44b80a141f38\",\"name\":\"Sensei Learning Management for WordPress\",\"slug\":\"sensei-learning-management-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/sensei-learning-management-for-wordpress\",\"sales_count\":24,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"learning, utilities, Business\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565ccac1-5c24-4bba-8093-44b80a141f38-00KwJ.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565ccac1-5c24-4bba-8093-44b80a141f38-XgoP6.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccac1-5c24-4bba-8093-44b80a141f38-VmSBv.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565ccac1-5c24-4bba-8093-44b80a141f38-9inA9.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"129.00\",\"5_domain_license\":\"516.00\",\"developer_license\":\"3225.00\"},\"features\":[\"Charge for Courses\",\"Seamless WordPress Integration\",\"Easy Content Creation\"],\"created\":\"2015-11-30 15:18:21\",\"created_timestamp\":1448921901,\"demo_url\":\"http:\\/\\/demo2.woothemes.com\\/sensei\\/wp-login.php?redirect_to=\\/sensei\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5799700a-2870-4909-a64e-66090a14153a\",\"name\":\"Simple Variation Price for WooCommerce Plugin\",\"slug\":\"simple-variation-price-for-woocommerce-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-variation-price-for-woocommerce-plugin\",\"sales_count\":24,\"is_service\":false,\"rating\":0,\"seller_name\":\"ShatterStudios\",\"seller_url\":\"store\\/shatter-studios\",\"tags\":\"clean, WordPress, woocommerce, price, product, display\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5799700a-2870-4909-a64e-66090a14153a-0h4ei.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5799700a-2870-4909-a64e-66090a14153a-CC3sy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-t1LO3.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-3H7Iv.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-56BK3.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-TmvX2.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-L8d1m.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-dq1kV.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5799700a-2870-4909-a64e-66090a14153a-x2L1N.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Show clean and simple prices on variable products\",\"Works with differing prices and sales of single\\/multiple variatio\",\"Easy 30 second install, no setup\"],\"created\":\"2016-07-27 20:52:43\",\"created_timestamp\":1469674363,\"demo_url\":\"http:\\/\\/demo.shatterstudios.net\\/wordpress\\/simple-variation-price\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4753e30d8003a46d6f3d50c2ef08faa7\"},{\"id\":\"58b845c9-fd3c-4a75-bda4-4a4f0a141539\",\"name\":\"Super Simple Recipes for WordPress\",\"slug\":\"super-simple-recipes-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/super-simple-recipes-for-wordpress\",\"sales_count\":22,\"is_service\":false,\"rating\":0,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, food, print, recipe, nutrition, ratings\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58b845c9-fd3c-4a75-bda4-4a4f0a141539-YgQKl.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58b845c9-fd3c-4a75-bda4-4a4f0a141539-lFYTC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-w2KwE.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-dHd0p.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-rJZCO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-xwR7j.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-intXn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58b845c9-fd3c-4a75-bda4-4a4f0a141539-9cW5R.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"29.00\",\"5_domain_license\":\"116.00\",\"developer_license\":\"725.00\"},\"features\":[\"Featured Recipe Images\",\"5 Star Recipe Ratings\",\"Google Friendly\"],\"created\":\"2017-03-02 09:18:29\",\"created_timestamp\":1488471509,\"demo_url\":\"http:\\/\\/healey.sculptureqode.com\\/easy-crispy-fries\\/#recipe-120\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"565ccf58-1990-4703-ad9e-10800a141f39\",\"name\":\"UPS Shipping Method for WooCommerce\",\"slug\":\"ups-shipping-method-for-woocommerce\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/ups-shipping-method-for-woocommerce\",\"sales_count\":19,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"Business, woocommerce, ups\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565ccf58-1990-4703-ad9e-10800a141f39-uBUnn.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565ccf58-1990-4703-ad9e-10800a141f39-JyL0v.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-RmbYA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-7jltm.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-RmbYA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-7jltm.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565ccf58-1990-4703-ad9e-10800a141f39-PAVBd.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Units Converted Automatically\",\"API\",\"Calculate Quotes Worldwide\"],\"created\":\"2015-11-30 15:36:21\",\"created_timestamp\":1448922981,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/ups-shipping-method\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565f4657-4fb8-4671-8342-3d980a141f38\",\"name\":\"WooSlider Ultimate WordPress Slideshow Plugin\",\"slug\":\"wooslider-ultimate-responsive-wordpress-slideshow-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wooslider-ultimate-responsive-wordpress-slideshow-plugin\",\"sales_count\":17,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"responsive, WordPress, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4657-4fb8-4671-8342-3d980a141f38-Keub5.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4657-4fb8-4671-8342-3d980a141f38-TTJH8.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-lrHKQ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-K6FIc.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-RLsqg.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-sjNEL.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4657-4fb8-4671-8342-3d980a141f38-hRpZZ.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Content Layouts\",\"Pagination Controls\",\"Sliding Speed\"],\"created\":\"2015-12-02 12:30:23\",\"created_timestamp\":1449084623,\"demo_url\":\"http:\\/\\/wooslider.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5793b572-feb0-4db7-86f7-4f0c0a141539\",\"name\":\"WordPress Live Search and Auto Complete Search Plugin\",\"slug\":\"wordpress-live-search-and-auto-complete-search-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-live-search-and-auto-complete-search-plugin\",\"sales_count\":16,\"is_service\":false,\"rating\":0,\"seller_name\":\"Netflixtech\",\"seller_url\":\"store\\/netflixtech\",\"tags\":\"widgets, search\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5793b572-feb0-4db7-86f7-4f0c0a141539-gt78n.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5793b572-feb0-4db7-86f7-4f0c0a141539-MGZsh.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-T5ad5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-VrhU4.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-H59XK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-qrYVm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-6hnG0.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5793b572-feb0-4db7-86f7-4f0c0a141539-10vOf.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Support custom post type and taxonomy type\",\"Ajax Search support\",\"Instant search result with featured image\"],\"created\":\"2016-07-23 12:20:47\",\"created_timestamp\":1469298047,\"demo_url\":\"http:\\/\\/demo.netflixtech.com\\/shop\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"bba199e24571f9fe614b6995e1f58e2c\"},{\"id\":\"56baf822-a408-444b-8045-389e0a141f38\",\"name\":\"Mapo Neighborhood Map Plugin\",\"slug\":\"mapo-neighborhood-map-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/mapo-neighborhood-map-plugin\",\"sales_count\":16,\"is_service\":false,\"rating\":0,\"seller_name\":\"layero\",\"seller_url\":\"store\\/layero-themes\",\"tags\":\"WordPress, location, map\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56baf822-a408-444b-8045-389e0a141f38-2jfgZ.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56baf822-a408-444b-8045-389e0a141f38-21nzC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56baf822-a408-444b-8045-389e0a141f38-Awk64.PNG\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56baf822-a408-444b-8045-389e0a141f38-kiDbp.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Google map\",\"Responsive Design\",\"Distance, Time\"],\"created\":\"2016-02-10 02:13:37\",\"created_timestamp\":1455095617,\"demo_url\":\"http:\\/\\/www.outcrafter.com\\/graha2\\/neighborhood-map-plugin\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"0342c3ae2d68ea1fcba779f129a4c255\"}],\"page\":\"1\",\"pageCount\":3,\"records\":45}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"p30q3d57meh7d78bm0nj0vgqn3\";s:7:\"expires\";i:1501904930;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:57962:\"{\"status\":\"success\",\"items\":[{\"id\":\"57fc0ac0-d508-4ece-b096-041e0a14153b\",\"name\":\"Constant Contact Forms For WordPress\",\"slug\":\"constant-contact-forms-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/constant-contact-forms-for-wordpress\",\"sales_count\":1738,\"is_service\":false,\"rating\":0,\"seller_name\":\"CTCT\",\"seller_url\":\"store\\/constant-contact\",\"tags\":\"WordPress, plugins, plugin\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57fc0ac0-d508-4ece-b096-041e0a14153b-QZ0bW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57fc0ac0-d508-4ece-b096-041e0a14153b-7uenP.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-0PRzB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-cKWzO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-AzsJ5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-2dJiP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-2dJiP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-cKWzO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-0PRzB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-AzsJ5.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57fc0ac0-d508-4ece-b096-041e0a14153b-4iVnr.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Capture Visitor Information Right From Your WordPress Site\",\"Create Easy To Install-Forms that Match Your WP Theme\",\"Customize Data Fields, So You Can Tailor The Information You Coll\"],\"created\":\"2016-10-10 15:40:46\",\"created_timestamp\":1476135646,\"demo_url\":\"https:\\/\\/cl.ly\\/3z3p2Y3b1d1Y\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d8351e3b1400f222097db205c3729c64\"},{\"id\":\"565f4b5d-4dcc-48c4-8059-3de40a141f38\",\"name\":\"Product Vendors - Plugin for WordPress\",\"slug\":\"product-vendors-plugin-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-vendors-plugin-for-wordpress\",\"sales_count\":1024,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, woocommerce, accounting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4b5d-4dcc-48c4-8059-3de40a141f38-2MCs2.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4b5d-4dcc-48c4-8059-3de40a141f38-pbL75.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-yP02g.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-Fv652.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-U79BI.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4b5d-4dcc-48c4-8059-3de40a141f38-ePpeq.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"10.00\",\"5_domain_license\":\"40.00\",\"developer_license\":\"250.00\"},\"features\":[\"Accessible And Readable Reports For You And Your Vendors\",\"Manage Product Tags\",\"Manage Your Commissions With Ease\"],\"created\":\"2015-12-02 12:53:01\",\"created_timestamp\":1449085981,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/product-vendors\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565f4800-ef44-49e2-8c7a-1b160a141f37\",\"name\":\"TradeGecko Inventory Management for WordPress\",\"slug\":\"tradegecko-inventory-management-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/tradegecko-inventory-management-for-wordpress\",\"sales_count\":400,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, accounting, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4800-ef44-49e2-8c7a-1b160a141f37-oSPDm.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4800-ef44-49e2-8c7a-1b160a141f37-zXZmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4800-ef44-49e2-8c7a-1b160a141f37-HKwaB.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4800-ef44-49e2-8c7a-1b160a141f37-MPSbW.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"10.00\",\"5_domain_license\":\"40.00\",\"developer_license\":\"250.00\"},\"features\":[\"Integrate your WooCommerce Store with TradeGecko\",\"Multi-Channel Sales Management\",\"Order Management Platform\"],\"created\":\"2015-12-02 12:40:07\",\"created_timestamp\":1449085207,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/woocommerce-tradegecko\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"567aabcb-9f9c-43bb-97b6-1b660a141f37\",\"name\":\"Contact Form Plugin WP Contact Forms with CAPTCHA &amp; Validation\",\"slug\":\"advanced-wordpress-contact-form-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/advanced-wordpress-contact-form-plugin\",\"sales_count\":159,\"is_service\":false,\"rating\":5,\"seller_name\":\"htmlpie\",\"seller_url\":\"store\\/htmlpie\",\"tags\":\"email, ajax, contact, message, captcha, validation, localization, shortcode, spam, responsive, mobile, newsletter, widget, form\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58f7adc8-c67c-4294-b42f-1f5a0a141539-Exwvg.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58f7adc8-c67c-4294-b42f-1f5a0a141539-M8ab7.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-WuQcg.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-ZNycn.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8MO33.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8iaHy.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-kgMxM.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8lu19.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-GAolw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-Q6KrR.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-567aabcb-9f9c-43bb-97b6-1b660a141f37-4n2sg.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Built-in CAPTCHA and Validation\",\"Tons of Ready-Made CSS3 Styles Included\",\"Automatic Plugin Update\"],\"created\":\"2015-12-23 07:13:14\",\"created_timestamp\":1450879994,\"demo_url\":\"https:\\/\\/www.htmlpie.com\\/preview\\/wordpress-contact-form-plugin?ref=mojomarketplace\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"dfbdb474052f63e677f6ae8cd239639a\"},{\"id\":\"565f4f34-f7a4-44b6-95d4-490a0a141f38\",\"name\":\"PayPal Pro Credit Card Gateway Plugin\",\"slug\":\"paypal-pro-credit-card-gateway-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/paypal-pro-credit-card-gateway-plugin\",\"sales_count\":69,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"Business, account, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4f34-f7a4-44b6-95d4-490a0a141f38-lsaRh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4f34-f7a4-44b6-95d4-490a0a141f38-RcvRT.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4f34-f7a4-44b6-95d4-490a0a141f38-as1x2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4f34-f7a4-44b6-95d4-490a0a141f38-DIR4m.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Checkout Process\",\"Take Credit Card Payments Directly\",\"Easy to integrate\"],\"created\":\"2015-12-02 13:08:02\",\"created_timestamp\":1449086882,\"demo_url\":\"https:\\/\\/www.paypal.com\\/webapps\\/mpp\\/paypal-payments-pro\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"57a3b773-3038-430b-a6c0-0ab90a14153b\",\"name\":\"Visitor Statistics Site Visitor Statistics for WordPress\",\"slug\":\"mystat-site-visitor-statistics-for-wordpress-7\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/mystat-site-visitor-statistics-for-wordpress-7\",\"sales_count\":56,\"is_service\":false,\"rating\":0,\"seller_name\":\"mystat\",\"seller_url\":\"store\\/mystat\",\"tags\":\"analytics, statistics, WordPress, seo, widgets, professional, simple\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-59280b02-0030-4de6-a19d-5f050a141539-LZxGv.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-59280b02-0030-4de6-a19d-5f050a141539-CdVDh.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-FAr07.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-AuEQa.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-lki78.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-6lchg.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-RoDop.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-1tmpe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-eRwBo.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-PQ3md.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-MSqw7.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-qJfZN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-Z4SFa.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-EsLWh.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-59280b02-0030-4de6-a19d-5f050a141539-Z0S8N.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Statistics\",\"Security\",\"Analytics\"],\"created\":\"2016-08-04 15:47:29\",\"created_timestamp\":1470347249,\"demo_url\":\"http:\\/\\/my-stat.com\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"67ef2b46dcaaacbf476647c4ce8fc62d\"},{\"id\":\"565f506a-aaac-4997-8787-4fcd0a141f38\",\"name\":\"Amazon Pay Payments - WooCommerce Plugin\",\"slug\":\"amazon-payments-woocommerce-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amazon-payments-woocommerce-plugin\",\"sales_count\":51,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"free, accounting, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f506a-aaac-4997-8787-4fcd0a141f38-uspuS.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f506a-aaac-4997-8787-4fcd0a141f38-Wx9pL.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f506a-aaac-4997-8787-4fcd0a141f38-XhLz7.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f506a-aaac-4997-8787-4fcd0a141f38-W9cWe.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Mobile-Optimized Widgets\",\"Site Retention\",\"Amazon Fraud Protection\"],\"created\":\"2015-12-02 13:15:02\",\"created_timestamp\":1449087302,\"demo_url\":\"https:\\/\\/sellercentral.amazon.com\\/ap\\/signin?_encoding=UTF8&amp;create=1&amp;openid.assoc_handle=amzn_urp_na&amp;openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&amp;openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&amp;openid.mode=checkid_setup&amp;openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&amp;openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&amp;openid.pape.max_auth_age=0&amp;openid.return_to=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fon-board%2Fworkflow%2FRegistration%2Flogin.html%3Fie%3DUTF8%26isAuthPortalRedirected%3D1%26passthrough%252F*Version*%3D1%26passthrough%252F*entries*%3D0%26passthrough%252Faccount%3Dpyop%26passthrough%252Fld%3DAPRPWOOCOMMERCE%26passthrough%252FmarketplaceID%3DAGWSWK15IEJJ7%26passthrough%252FsimplifiedLogin%3D1%26passthrough%252Fsource%3Dinternal-landing-select%26passthrough%252FsuperSource%3DOAR%26passthrough%252FwaiveFee%3D1&amp;pageId=pyop\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5739b161-5e88-4728-a32d-1e5f0a140b32\",\"name\":\"Product Enquiry Pro (a.k.a. QuoteUp)\",\"slug\":\"product-enquiry-pro-a-k-a-quoteup\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-enquiry-pro-a-k-a-quoteup\",\"sales_count\":50,\"is_service\":false,\"rating\":0,\"seller_name\":\"WisdmLabs\",\"seller_url\":\"store\\/wisdmlabs\",\"tags\":\"Inquiry\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5739b161-5e88-4728-a32d-1e5f0a140b32-6YCv3.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5739b161-5e88-4728-a32d-1e5f0a140b32-c0Eyz.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-zdcWU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-IhFF5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-u0iQ8.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-2mGch.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QCRvi.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-b0lZR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jiQVI.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-qbtkO.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-0nTzd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WkJ0G.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-y2cZN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-HjJXP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-r6wgA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-fyKCl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-PC6gA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jEgTa.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-a1Cj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-NKCkG.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-srnUw.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yXGj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-7c3HT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jWqLC.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-nrVwo.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Eu55C.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yVjEw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EYBpJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-c6yM1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-xizTU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QOamp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-cIyPC.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LtqB1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-TRPgd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-3alqh.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-paYy0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LqYZn.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-4OtgT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-9xAlJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-KwI77.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-pyXm0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-dmXwN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-XRmLU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WuQ35.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-vAixT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-GHCXL.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EMDEO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-e58XN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Vgvtd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-FY2Yw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-fyKCl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QCRvi.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-0nTzd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-a1Cj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-cIyPC.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-paYy0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-7c3HT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Eu55C.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-GHCXL.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-HjJXP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-IhFF5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-c6yM1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-KwI77.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-XRmLU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Vgvtd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-b0lZR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-PC6gA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-NKCkG.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LtqB1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WkJ0G.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yVjEw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LqYZn.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EMDEO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-r6wgA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-u0iQ8.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jWqLC.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-xizTU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WuQ35.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-FY2Yw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jiQVI.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-TRPgd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-srnUw.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-pyXm0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-zdcWU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-4OtgT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-2mGch.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-nrVwo.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jEgTa.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-qbtkO.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-e58XN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QOamp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-vAixT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yXGj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-3alqh.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-y2cZN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EYBpJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-dmXwN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-9xAlJ.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5739b161-5e88-4728-a32d-1e5f0a140b32-fqYwA.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"39.00\",\"5_domain_license\":\"156.00\",\"developer_license\":\"975.00\"},\"features\":[\"Add Inquiry Button under each product on your Shop Page\",\"Customizable Enquiry Form\",\"Fully Responsive\"],\"created\":\"2016-05-16 05:42:19\",\"created_timestamp\":1463398939,\"demo_url\":\"quoteup.wisdmlabs.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c3d69f74d7cb90fdb0502ac64f509d25\"},{\"id\":\"57ad9c9b-9438-4efd-a3cf-3cb40a14153a\",\"name\":\"Hide My WordPress Hide My WordPress PRO- Best Security 2017\",\"slug\":\"hide-my-wordpress-pro-security-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/hide-my-wordpress-pro-security-plugin\",\"sales_count\":40,\"is_service\":false,\"rating\":0,\"seller_name\":\"johnd\",\"seller_url\":\"store\\/wpplugins\",\"tags\":\"security, best sellers, hide, WordPress, plugin, wplugin, login, Admin Login, admin\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5924fb86-2f74-4e96-8f8e-53560a141f3e-dkRGs.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5924fb86-2f74-4e96-8f8e-53560a141f3e-QeGTz.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5924fb86-2f74-4e96-8f8e-53560a141f3e-2Nm2L.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-wxSxb.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-pouGp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-27liB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-dyCkD.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-qiqvP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58f08514-9a60-4399-818a-06730a14153b-CuITJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-pOyFW.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-gWyDl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-QOPCs.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-Qjw0O.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-u8y1y.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-wyjgj.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5924fb86-2f74-4e96-8f8e-53560a141f3e-KXrMa.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"29.00\",\"5_domain_license\":\"116.00\",\"developer_license\":\"725.00\"},\"features\":[\"Support for WordPress Multi Sites, Apache, Nginx and LiteSpeed \",\"Safe and Fast Plugin for WordPress\",\"Protect Your WordPress Site \"],\"created\":\"2016-08-12 03:53:51\",\"created_timestamp\":1470995631,\"demo_url\":\"http:\\/\\/test.wpplugins.tips\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be0877006f3b74c66893473a71c5374b\"},{\"id\":\"51e0385c-fb50-480b-ab02-64b60a140b24\",\"name\":\"Domain For Sale Domain Auction Plugin For WordPress\",\"slug\":\"this-domain-is-for-sale-wordpress-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/this-domain-is-for-sale-wordpress-plugin\",\"sales_count\":38,\"is_service\":false,\"rating\":0,\"seller_name\":\"htmlpie\",\"seller_url\":\"store\\/htmlpie\",\"tags\":\"offer, buy, sell, domain, sale, auction, csv, price, bid, park, email, mail, parking, marketplace, quote\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-8gc04.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_backend_screenshot-mm-resize-1800x1800.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-QCT1V.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51e0385c-fb50-480b-ab02-64b60a140b24-xbchz.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"15.00\",\"5_domain_license\":\"60.00\",\"developer_license\":\"375.00\"},\"features\":[\"One Single WordPress Installation For All Your Domains\",\"Highly Customizable\",\"Auction and Fixed-Price Sales\"],\"created\":\"2013-07-12 11:50:00\",\"created_timestamp\":1373651400,\"demo_url\":\"https:\\/\\/www.htmlpie.com\\/preview\\/domain-for-sale-wordpress-plugin\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"dfbdb474052f63e677f6ae8cd239639a\"},{\"id\":\"565f5da6-70d8-4e67-ad3b-5dc10a141f38\",\"name\":\"Product Add-ons - WooCommerce Add-on\",\"slug\":\"product-add-ons-woocommerce-add-on\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-add-ons-woocommerce-add-on\",\"sales_count\":34,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, utilities, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f5da6-70d8-4e67-ad3b-5dc10a141f38-NxrIO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f5da6-70d8-4e67-ad3b-5dc10a141f38-WP4O7.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f5da6-70d8-4e67-ad3b-5dc10a141f38-RNNTM.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f5da6-70d8-4e67-ad3b-5dc10a141f38-xbFlV.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f5da6-70d8-4e67-ad3b-5dc10a141f38-7RYy3.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Create Additional Product Personalization Options\",\"Easy to Integrate\",\"Customize\"],\"created\":\"2015-12-02 14:07:56\",\"created_timestamp\":1449090476,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/product-add-ons\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"56cec6a0-adf4-4ff2-ae09-5d6a0a141f37\",\"name\":\"TZ Plus Gallery WordPress Social Gallery Plugin\",\"slug\":\"tz-plus-gallery-wordpress-social-gallery-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/tz-plus-gallery-wordpress-social-gallery-plugin\",\"sales_count\":33,\"is_service\":false,\"rating\":1,\"seller_name\":\"templazavn\",\"seller_url\":\"store\\/templaza\",\"tags\":\"social, media, gallery, facebook, google, instagram, flickr, album\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-Y8Qij.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-vIRqv.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-a10LU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-L7gqx.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-ZShrh.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-oQhR5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-iJE1Q.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-W3Q1L.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-Ewkwp.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-dPDRF.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-R3U9y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Fully Responsive\",\"Facebook, Flickr, Instagram, Google+, WordPress Gallery\",\"28 Example Skins\"],\"created\":\"2016-02-25 02:18:03\",\"created_timestamp\":1456391883,\"demo_url\":\"http:\\/\\/wordpress.templaza.net\\/plugins\\/tzplusgallery\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c15b4a9ff53c735d6a37b3eb599b2f05\"},{\"id\":\"565cccfd-2ef4-4609-bc33-49f60a141f38\",\"name\":\"USPS Shipping Method for WooCommerce\",\"slug\":\"usps-shipping-method-for-woocommerce\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/usps-shipping-method-for-woocommerce\",\"sales_count\":28,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"woocommerce, shipping, utilities\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565cccfd-2ef4-4609-bc33-49f60a141f38-vVLVV.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565cccfd-2ef4-4609-bc33-49f60a141f38-9e1mN.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-7QB3H.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-7QB3H.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-0BAMw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-0BAMw.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565cccfd-2ef4-4609-bc33-49f60a141f38-KhuD0.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Pack Items Individually\",\"Calculates Quotes Worldwide\",\"Real-Time Shipping Rates\"],\"created\":\"2015-11-30 15:26:52\",\"created_timestamp\":1448922412,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/usps-shipping-method\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565ccac1-5c24-4bba-8093-44b80a141f38\",\"name\":\"Sensei Learning Management for WordPress\",\"slug\":\"sensei-learning-management-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/sensei-learning-management-for-wordpress\",\"sales_count\":24,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"learning, utilities, Business\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565ccac1-5c24-4bba-8093-44b80a141f38-00KwJ.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565ccac1-5c24-4bba-8093-44b80a141f38-XgoP6.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccac1-5c24-4bba-8093-44b80a141f38-VmSBv.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565ccac1-5c24-4bba-8093-44b80a141f38-9inA9.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"129.00\",\"5_domain_license\":\"516.00\",\"developer_license\":\"3225.00\"},\"features\":[\"Charge for Courses\",\"Seamless WordPress Integration\",\"Easy Content Creation\"],\"created\":\"2015-11-30 15:18:21\",\"created_timestamp\":1448921901,\"demo_url\":\"http:\\/\\/demo2.woothemes.com\\/sensei\\/wp-login.php?redirect_to=\\/sensei\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5799700a-2870-4909-a64e-66090a14153a\",\"name\":\"Simple Variation Price for WooCommerce Plugin\",\"slug\":\"simple-variation-price-for-woocommerce-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-variation-price-for-woocommerce-plugin\",\"sales_count\":24,\"is_service\":false,\"rating\":0,\"seller_name\":\"ShatterStudios\",\"seller_url\":\"store\\/shatter-studios\",\"tags\":\"clean, WordPress, woocommerce, price, product, display\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5799700a-2870-4909-a64e-66090a14153a-0h4ei.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5799700a-2870-4909-a64e-66090a14153a-CC3sy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-t1LO3.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-3H7Iv.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-56BK3.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-TmvX2.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-L8d1m.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-dq1kV.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5799700a-2870-4909-a64e-66090a14153a-x2L1N.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Show clean and simple prices on variable products\",\"Works with differing prices and sales of single\\/multiple variatio\",\"Easy 30 second install, no setup\"],\"created\":\"2016-07-27 20:52:43\",\"created_timestamp\":1469674363,\"demo_url\":\"http:\\/\\/demo.shatterstudios.net\\/wordpress\\/simple-variation-price\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4753e30d8003a46d6f3d50c2ef08faa7\"},{\"id\":\"58b845c9-fd3c-4a75-bda4-4a4f0a141539\",\"name\":\"Super Simple Recipes for WordPress\",\"slug\":\"super-simple-recipes-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/super-simple-recipes-for-wordpress\",\"sales_count\":22,\"is_service\":false,\"rating\":0,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, food, print, recipe, nutrition, ratings\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58b845c9-fd3c-4a75-bda4-4a4f0a141539-YgQKl.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58b845c9-fd3c-4a75-bda4-4a4f0a141539-lFYTC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-w2KwE.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-dHd0p.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-rJZCO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-xwR7j.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-intXn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58b845c9-fd3c-4a75-bda4-4a4f0a141539-9cW5R.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"29.00\",\"5_domain_license\":\"116.00\",\"developer_license\":\"725.00\"},\"features\":[\"Featured Recipe Images\",\"5 Star Recipe Ratings\",\"Google Friendly\"],\"created\":\"2017-03-02 09:18:29\",\"created_timestamp\":1488471509,\"demo_url\":\"http:\\/\\/healey.sculptureqode.com\\/easy-crispy-fries\\/#recipe-120\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"565ccf58-1990-4703-ad9e-10800a141f39\",\"name\":\"UPS Shipping Method for WooCommerce\",\"slug\":\"ups-shipping-method-for-woocommerce\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/ups-shipping-method-for-woocommerce\",\"sales_count\":19,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"Business, woocommerce, ups\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565ccf58-1990-4703-ad9e-10800a141f39-uBUnn.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565ccf58-1990-4703-ad9e-10800a141f39-JyL0v.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-RmbYA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-7jltm.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-RmbYA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-7jltm.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565ccf58-1990-4703-ad9e-10800a141f39-PAVBd.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Units Converted Automatically\",\"API\",\"Calculate Quotes Worldwide\"],\"created\":\"2015-11-30 15:36:21\",\"created_timestamp\":1448922981,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/ups-shipping-method\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565f4657-4fb8-4671-8342-3d980a141f38\",\"name\":\"WooSlider Ultimate WordPress Slideshow Plugin\",\"slug\":\"wooslider-ultimate-responsive-wordpress-slideshow-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wooslider-ultimate-responsive-wordpress-slideshow-plugin\",\"sales_count\":17,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"responsive, WordPress, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4657-4fb8-4671-8342-3d980a141f38-Keub5.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4657-4fb8-4671-8342-3d980a141f38-TTJH8.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-lrHKQ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-K6FIc.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-RLsqg.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-sjNEL.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4657-4fb8-4671-8342-3d980a141f38-hRpZZ.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Content Layouts\",\"Pagination Controls\",\"Sliding Speed\"],\"created\":\"2015-12-02 12:30:23\",\"created_timestamp\":1449084623,\"demo_url\":\"http:\\/\\/wooslider.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5793b572-feb0-4db7-86f7-4f0c0a141539\",\"name\":\"WordPress Live Search and Auto Complete Search Plugin\",\"slug\":\"wordpress-live-search-and-auto-complete-search-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-live-search-and-auto-complete-search-plugin\",\"sales_count\":16,\"is_service\":false,\"rating\":0,\"seller_name\":\"Netflixtech\",\"seller_url\":\"store\\/netflixtech\",\"tags\":\"widgets, search\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5793b572-feb0-4db7-86f7-4f0c0a141539-gt78n.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5793b572-feb0-4db7-86f7-4f0c0a141539-MGZsh.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-T5ad5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-VrhU4.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-H59XK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-qrYVm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-6hnG0.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5793b572-feb0-4db7-86f7-4f0c0a141539-10vOf.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Support custom post type and taxonomy type\",\"Ajax Search support\",\"Instant search result with featured image\"],\"created\":\"2016-07-23 12:20:47\",\"created_timestamp\":1469298047,\"demo_url\":\"http:\\/\\/demo.netflixtech.com\\/shop\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"bba199e24571f9fe614b6995e1f58e2c\"},{\"id\":\"56baf822-a408-444b-8045-389e0a141f38\",\"name\":\"Mapo Neighborhood Map Plugin\",\"slug\":\"mapo-neighborhood-map-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/mapo-neighborhood-map-plugin\",\"sales_count\":16,\"is_service\":false,\"rating\":0,\"seller_name\":\"layero\",\"seller_url\":\"store\\/layero-themes\",\"tags\":\"WordPress, location, map\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56baf822-a408-444b-8045-389e0a141f38-2jfgZ.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56baf822-a408-444b-8045-389e0a141f38-21nzC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56baf822-a408-444b-8045-389e0a141f38-Awk64.PNG\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56baf822-a408-444b-8045-389e0a141f38-kiDbp.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Google map\",\"Responsive Design\",\"Distance, Time\"],\"created\":\"2016-02-10 02:13:37\",\"created_timestamp\":1455095617,\"demo_url\":\"http:\\/\\/www.outcrafter.com\\/graha2\\/neighborhood-map-plugin\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"0342c3ae2d68ea1fcba779f129a4c255\"}],\"page\":\"1\",\"pageCount\":3,\"records\":45}\";s:3:\"raw\";s:58364:\"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nCache-Control: 900\r\nContent-Type: application/json; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:48:50 GMT\r\nServer: nginx/1.10.1\r\nSet-Cookie: SESSION=p30q3d57meh7d78bm0nj0vgqn3; expires=Sat, 05-Aug-2017 03:48:50 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\r\nX-Powered-By: PHP/5.6.22\r\nContent-Length: 57962\r\nConnection: Close\r\n\r\n{\"status\":\"success\",\"items\":[{\"id\":\"57fc0ac0-d508-4ece-b096-041e0a14153b\",\"name\":\"Constant Contact Forms For WordPress\",\"slug\":\"constant-contact-forms-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/constant-contact-forms-for-wordpress\",\"sales_count\":1738,\"is_service\":false,\"rating\":0,\"seller_name\":\"CTCT\",\"seller_url\":\"store\\/constant-contact\",\"tags\":\"WordPress, plugins, plugin\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57fc0ac0-d508-4ece-b096-041e0a14153b-QZ0bW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57fc0ac0-d508-4ece-b096-041e0a14153b-7uenP.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-0PRzB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-cKWzO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-AzsJ5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-2dJiP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-2dJiP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-cKWzO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-0PRzB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57fc0ac0-d508-4ece-b096-041e0a14153b-AzsJ5.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57fc0ac0-d508-4ece-b096-041e0a14153b-4iVnr.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Capture Visitor Information Right From Your WordPress Site\",\"Create Easy To Install-Forms that Match Your WP Theme\",\"Customize Data Fields, So You Can Tailor The Information You Coll\"],\"created\":\"2016-10-10 15:40:46\",\"created_timestamp\":1476135646,\"demo_url\":\"https:\\/\\/cl.ly\\/3z3p2Y3b1d1Y\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d8351e3b1400f222097db205c3729c64\"},{\"id\":\"565f4b5d-4dcc-48c4-8059-3de40a141f38\",\"name\":\"Product Vendors - Plugin for WordPress\",\"slug\":\"product-vendors-plugin-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-vendors-plugin-for-wordpress\",\"sales_count\":1024,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, woocommerce, accounting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4b5d-4dcc-48c4-8059-3de40a141f38-2MCs2.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4b5d-4dcc-48c4-8059-3de40a141f38-pbL75.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-yP02g.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-Fv652.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4b5d-4dcc-48c4-8059-3de40a141f38-U79BI.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4b5d-4dcc-48c4-8059-3de40a141f38-ePpeq.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"10.00\",\"5_domain_license\":\"40.00\",\"developer_license\":\"250.00\"},\"features\":[\"Accessible And Readable Reports For You And Your Vendors\",\"Manage Product Tags\",\"Manage Your Commissions With Ease\"],\"created\":\"2015-12-02 12:53:01\",\"created_timestamp\":1449085981,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/product-vendors\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565f4800-ef44-49e2-8c7a-1b160a141f37\",\"name\":\"TradeGecko Inventory Management for WordPress\",\"slug\":\"tradegecko-inventory-management-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/tradegecko-inventory-management-for-wordpress\",\"sales_count\":400,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, accounting, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4800-ef44-49e2-8c7a-1b160a141f37-oSPDm.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4800-ef44-49e2-8c7a-1b160a141f37-zXZmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4800-ef44-49e2-8c7a-1b160a141f37-HKwaB.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4800-ef44-49e2-8c7a-1b160a141f37-MPSbW.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"10.00\",\"5_domain_license\":\"40.00\",\"developer_license\":\"250.00\"},\"features\":[\"Integrate your WooCommerce Store with TradeGecko\",\"Multi-Channel Sales Management\",\"Order Management Platform\"],\"created\":\"2015-12-02 12:40:07\",\"created_timestamp\":1449085207,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/woocommerce-tradegecko\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"567aabcb-9f9c-43bb-97b6-1b660a141f37\",\"name\":\"Contact Form Plugin WP Contact Forms with CAPTCHA &amp; Validation\",\"slug\":\"advanced-wordpress-contact-form-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/advanced-wordpress-contact-form-plugin\",\"sales_count\":159,\"is_service\":false,\"rating\":5,\"seller_name\":\"htmlpie\",\"seller_url\":\"store\\/htmlpie\",\"tags\":\"email, ajax, contact, message, captcha, validation, localization, shortcode, spam, responsive, mobile, newsletter, widget, form\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58f7adc8-c67c-4294-b42f-1f5a0a141539-Exwvg.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58f7adc8-c67c-4294-b42f-1f5a0a141539-M8ab7.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-WuQcg.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-ZNycn.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8MO33.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8iaHy.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-kgMxM.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-8lu19.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-GAolw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-567aabcb-9f9c-43bb-97b6-1b660a141f37-Q6KrR.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-567aabcb-9f9c-43bb-97b6-1b660a141f37-4n2sg.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Built-in CAPTCHA and Validation\",\"Tons of Ready-Made CSS3 Styles Included\",\"Automatic Plugin Update\"],\"created\":\"2015-12-23 07:13:14\",\"created_timestamp\":1450879994,\"demo_url\":\"https:\\/\\/www.htmlpie.com\\/preview\\/wordpress-contact-form-plugin?ref=mojomarketplace\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"dfbdb474052f63e677f6ae8cd239639a\"},{\"id\":\"565f4f34-f7a4-44b6-95d4-490a0a141f38\",\"name\":\"PayPal Pro Credit Card Gateway Plugin\",\"slug\":\"paypal-pro-credit-card-gateway-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/paypal-pro-credit-card-gateway-plugin\",\"sales_count\":69,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"Business, account, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4f34-f7a4-44b6-95d4-490a0a141f38-lsaRh.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4f34-f7a4-44b6-95d4-490a0a141f38-RcvRT.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4f34-f7a4-44b6-95d4-490a0a141f38-as1x2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4f34-f7a4-44b6-95d4-490a0a141f38-DIR4m.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Checkout Process\",\"Take Credit Card Payments Directly\",\"Easy to integrate\"],\"created\":\"2015-12-02 13:08:02\",\"created_timestamp\":1449086882,\"demo_url\":\"https:\\/\\/www.paypal.com\\/webapps\\/mpp\\/paypal-payments-pro\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"57a3b773-3038-430b-a6c0-0ab90a14153b\",\"name\":\"Visitor Statistics Site Visitor Statistics for WordPress\",\"slug\":\"mystat-site-visitor-statistics-for-wordpress-7\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/mystat-site-visitor-statistics-for-wordpress-7\",\"sales_count\":56,\"is_service\":false,\"rating\":0,\"seller_name\":\"mystat\",\"seller_url\":\"store\\/mystat\",\"tags\":\"analytics, statistics, WordPress, seo, widgets, professional, simple\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-59280b02-0030-4de6-a19d-5f050a141539-LZxGv.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-59280b02-0030-4de6-a19d-5f050a141539-CdVDh.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-FAr07.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-AuEQa.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-lki78.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-6lchg.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-RoDop.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-1tmpe.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-eRwBo.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-PQ3md.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-MSqw7.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-qJfZN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-Z4SFa.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57a3b773-3038-430b-a6c0-0ab90a14153b-EsLWh.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-59280b02-0030-4de6-a19d-5f050a141539-Z0S8N.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Statistics\",\"Security\",\"Analytics\"],\"created\":\"2016-08-04 15:47:29\",\"created_timestamp\":1470347249,\"demo_url\":\"http:\\/\\/my-stat.com\\/demo\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"67ef2b46dcaaacbf476647c4ce8fc62d\"},{\"id\":\"565f506a-aaac-4997-8787-4fcd0a141f38\",\"name\":\"Amazon Pay Payments - WooCommerce Plugin\",\"slug\":\"amazon-payments-woocommerce-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/amazon-payments-woocommerce-plugin\",\"sales_count\":51,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"free, accounting, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f506a-aaac-4997-8787-4fcd0a141f38-uspuS.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f506a-aaac-4997-8787-4fcd0a141f38-Wx9pL.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f506a-aaac-4997-8787-4fcd0a141f38-XhLz7.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f506a-aaac-4997-8787-4fcd0a141f38-W9cWe.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Mobile-Optimized Widgets\",\"Site Retention\",\"Amazon Fraud Protection\"],\"created\":\"2015-12-02 13:15:02\",\"created_timestamp\":1449087302,\"demo_url\":\"https:\\/\\/sellercentral.amazon.com\\/ap\\/signin?_encoding=UTF8&amp;create=1&amp;openid.assoc_handle=amzn_urp_na&amp;openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&amp;openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&amp;openid.mode=checkid_setup&amp;openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&amp;openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&amp;openid.pape.max_auth_age=0&amp;openid.return_to=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fon-board%2Fworkflow%2FRegistration%2Flogin.html%3Fie%3DUTF8%26isAuthPortalRedirected%3D1%26passthrough%252F*Version*%3D1%26passthrough%252F*entries*%3D0%26passthrough%252Faccount%3Dpyop%26passthrough%252Fld%3DAPRPWOOCOMMERCE%26passthrough%252FmarketplaceID%3DAGWSWK15IEJJ7%26passthrough%252FsimplifiedLogin%3D1%26passthrough%252Fsource%3Dinternal-landing-select%26passthrough%252FsuperSource%3DOAR%26passthrough%252FwaiveFee%3D1&amp;pageId=pyop\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5739b161-5e88-4728-a32d-1e5f0a140b32\",\"name\":\"Product Enquiry Pro (a.k.a. QuoteUp)\",\"slug\":\"product-enquiry-pro-a-k-a-quoteup\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-enquiry-pro-a-k-a-quoteup\",\"sales_count\":50,\"is_service\":false,\"rating\":0,\"seller_name\":\"WisdmLabs\",\"seller_url\":\"store\\/wisdmlabs\",\"tags\":\"Inquiry\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5739b161-5e88-4728-a32d-1e5f0a140b32-6YCv3.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5739b161-5e88-4728-a32d-1e5f0a140b32-c0Eyz.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-zdcWU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-IhFF5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-u0iQ8.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-2mGch.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QCRvi.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-b0lZR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jiQVI.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-qbtkO.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-0nTzd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WkJ0G.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-y2cZN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-HjJXP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-r6wgA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-fyKCl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-PC6gA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jEgTa.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-a1Cj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-NKCkG.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-srnUw.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yXGj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-7c3HT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jWqLC.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-nrVwo.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Eu55C.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yVjEw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EYBpJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-c6yM1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-xizTU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QOamp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-cIyPC.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LtqB1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-TRPgd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-3alqh.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-paYy0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LqYZn.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-4OtgT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-9xAlJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-KwI77.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-pyXm0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-dmXwN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-XRmLU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WuQ35.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-vAixT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-GHCXL.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EMDEO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-e58XN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Vgvtd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-FY2Yw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-fyKCl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QCRvi.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-0nTzd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-a1Cj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-cIyPC.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-paYy0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-7c3HT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Eu55C.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-GHCXL.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-HjJXP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-IhFF5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-c6yM1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-KwI77.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-XRmLU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-Vgvtd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-b0lZR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-PC6gA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-NKCkG.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LtqB1.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WkJ0G.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yVjEw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-LqYZn.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EMDEO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-r6wgA.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-u0iQ8.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jWqLC.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-xizTU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-WuQ35.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-FY2Yw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jiQVI.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-TRPgd.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-srnUw.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-pyXm0.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-zdcWU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-4OtgT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-2mGch.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-nrVwo.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-jEgTa.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-qbtkO.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-e58XN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-QOamp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-vAixT.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-yXGj3.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-3alqh.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-y2cZN.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-EYBpJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-dmXwN.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5739b161-5e88-4728-a32d-1e5f0a140b32-9xAlJ.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5739b161-5e88-4728-a32d-1e5f0a140b32-fqYwA.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"39.00\",\"5_domain_license\":\"156.00\",\"developer_license\":\"975.00\"},\"features\":[\"Add Inquiry Button under each product on your Shop Page\",\"Customizable Enquiry Form\",\"Fully Responsive\"],\"created\":\"2016-05-16 05:42:19\",\"created_timestamp\":1463398939,\"demo_url\":\"quoteup.wisdmlabs.com\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c3d69f74d7cb90fdb0502ac64f509d25\"},{\"id\":\"57ad9c9b-9438-4efd-a3cf-3cb40a14153a\",\"name\":\"Hide My WordPress Hide My WordPress PRO- Best Security 2017\",\"slug\":\"hide-my-wordpress-pro-security-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/hide-my-wordpress-pro-security-plugin\",\"sales_count\":40,\"is_service\":false,\"rating\":0,\"seller_name\":\"johnd\",\"seller_url\":\"store\\/wpplugins\",\"tags\":\"security, best sellers, hide, WordPress, plugin, wplugin, login, Admin Login, admin\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5924fb86-2f74-4e96-8f8e-53560a141f3e-dkRGs.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5924fb86-2f74-4e96-8f8e-53560a141f3e-QeGTz.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5924fb86-2f74-4e96-8f8e-53560a141f3e-2Nm2L.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-wxSxb.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-pouGp.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-27liB.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-dyCkD.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-qiqvP.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58f08514-9a60-4399-818a-06730a14153b-CuITJ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-pOyFW.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-gWyDl.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-QOPCs.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-Qjw0O.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-u8y1y.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57ad9c9b-9438-4efd-a3cf-3cb40a14153a-wyjgj.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5924fb86-2f74-4e96-8f8e-53560a141f3e-KXrMa.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"29.00\",\"5_domain_license\":\"116.00\",\"developer_license\":\"725.00\"},\"features\":[\"Support for WordPress Multi Sites, Apache, Nginx and LiteSpeed \",\"Safe and Fast Plugin for WordPress\",\"Protect Your WordPress Site \"],\"created\":\"2016-08-12 03:53:51\",\"created_timestamp\":1470995631,\"demo_url\":\"http:\\/\\/test.wpplugins.tips\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"be0877006f3b74c66893473a71c5374b\"},{\"id\":\"51e0385c-fb50-480b-ab02-64b60a140b24\",\"name\":\"Domain For Sale Domain Auction Plugin For WordPress\",\"slug\":\"this-domain-is-for-sale-wordpress-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/this-domain-is-for-sale-wordpress-plugin\",\"sales_count\":38,\"is_service\":false,\"rating\":0,\"seller_name\":\"htmlpie\",\"seller_url\":\"store\\/htmlpie\",\"tags\":\"offer, buy, sell, domain, sale, auction, csv, price, bid, park, email, mail, parking, marketplace, quote\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_368x296-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-136x136-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_260x156-mm-resize-260x156.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-8gc04.png\",\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-difs_wp_plugin_backend_screenshot-mm-resize-1800x1800.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-51e0385c-fb50-480b-ab02-64b60a140b24-QCT1V.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-51e0385c-fb50-480b-ab02-64b60a140b24-xbchz.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\",\"child_theme\"],\"prices\":{\"single_domain_license\":\"15.00\",\"5_domain_license\":\"60.00\",\"developer_license\":\"375.00\"},\"features\":[\"One Single WordPress Installation For All Your Domains\",\"Highly Customizable\",\"Auction and Fixed-Price Sales\"],\"created\":\"2013-07-12 11:50:00\",\"created_timestamp\":1373651400,\"demo_url\":\"https:\\/\\/www.htmlpie.com\\/preview\\/domain-for-sale-wordpress-plugin\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"dfbdb474052f63e677f6ae8cd239639a\"},{\"id\":\"565f5da6-70d8-4e67-ad3b-5dc10a141f38\",\"name\":\"Product Add-ons - WooCommerce Add-on\",\"slug\":\"product-add-ons-woocommerce-add-on\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/product-add-ons-woocommerce-add-on\",\"sales_count\":34,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"products, utilities, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f5da6-70d8-4e67-ad3b-5dc10a141f38-NxrIO.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f5da6-70d8-4e67-ad3b-5dc10a141f38-WP4O7.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f5da6-70d8-4e67-ad3b-5dc10a141f38-RNNTM.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f5da6-70d8-4e67-ad3b-5dc10a141f38-xbFlV.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f5da6-70d8-4e67-ad3b-5dc10a141f38-7RYy3.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Create Additional Product Personalization Options\",\"Easy to Integrate\",\"Customize\"],\"created\":\"2015-12-02 14:07:56\",\"created_timestamp\":1449090476,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/product-add-ons\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"56cec6a0-adf4-4ff2-ae09-5d6a0a141f37\",\"name\":\"TZ Plus Gallery WordPress Social Gallery Plugin\",\"slug\":\"tz-plus-gallery-wordpress-social-gallery-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/tz-plus-gallery-wordpress-social-gallery-plugin\",\"sales_count\":33,\"is_service\":false,\"rating\":1,\"seller_name\":\"templazavn\",\"seller_url\":\"store\\/templaza\",\"tags\":\"social, media, gallery, facebook, google, instagram, flickr, album\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-Y8Qij.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-vIRqv.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-a10LU.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-L7gqx.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-ZShrh.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-oQhR5.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-iJE1Q.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-W3Q1L.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-Ewkwp.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-dPDRF.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56cec6a0-adf4-4ff2-ae09-5d6a0a141f37-R3U9y.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Fully Responsive\",\"Facebook, Flickr, Instagram, Google+, WordPress Gallery\",\"28 Example Skins\"],\"created\":\"2016-02-25 02:18:03\",\"created_timestamp\":1456391883,\"demo_url\":\"http:\\/\\/wordpress.templaza.net\\/plugins\\/tzplusgallery\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c15b4a9ff53c735d6a37b3eb599b2f05\"},{\"id\":\"565cccfd-2ef4-4609-bc33-49f60a141f38\",\"name\":\"USPS Shipping Method for WooCommerce\",\"slug\":\"usps-shipping-method-for-woocommerce\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/usps-shipping-method-for-woocommerce\",\"sales_count\":28,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"woocommerce, shipping, utilities\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565cccfd-2ef4-4609-bc33-49f60a141f38-vVLVV.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565cccfd-2ef4-4609-bc33-49f60a141f38-9e1mN.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-7QB3H.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-7QB3H.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-0BAMw.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565cccfd-2ef4-4609-bc33-49f60a141f38-0BAMw.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565cccfd-2ef4-4609-bc33-49f60a141f38-KhuD0.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Pack Items Individually\",\"Calculates Quotes Worldwide\",\"Real-Time Shipping Rates\"],\"created\":\"2015-11-30 15:26:52\",\"created_timestamp\":1448922412,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/usps-shipping-method\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565ccac1-5c24-4bba-8093-44b80a141f38\",\"name\":\"Sensei Learning Management for WordPress\",\"slug\":\"sensei-learning-management-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/sensei-learning-management-for-wordpress\",\"sales_count\":24,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"learning, utilities, Business\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565ccac1-5c24-4bba-8093-44b80a141f38-00KwJ.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565ccac1-5c24-4bba-8093-44b80a141f38-XgoP6.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccac1-5c24-4bba-8093-44b80a141f38-VmSBv.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565ccac1-5c24-4bba-8093-44b80a141f38-9inA9.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"129.00\",\"5_domain_license\":\"516.00\",\"developer_license\":\"3225.00\"},\"features\":[\"Charge for Courses\",\"Seamless WordPress Integration\",\"Easy Content Creation\"],\"created\":\"2015-11-30 15:18:21\",\"created_timestamp\":1448921901,\"demo_url\":\"http:\\/\\/demo2.woothemes.com\\/sensei\\/wp-login.php?redirect_to=\\/sensei\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5799700a-2870-4909-a64e-66090a14153a\",\"name\":\"Simple Variation Price for WooCommerce Plugin\",\"slug\":\"simple-variation-price-for-woocommerce-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-variation-price-for-woocommerce-plugin\",\"sales_count\":24,\"is_service\":false,\"rating\":0,\"seller_name\":\"ShatterStudios\",\"seller_url\":\"store\\/shatter-studios\",\"tags\":\"clean, WordPress, woocommerce, price, product, display\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5799700a-2870-4909-a64e-66090a14153a-0h4ei.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5799700a-2870-4909-a64e-66090a14153a-CC3sy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-t1LO3.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-3H7Iv.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-56BK3.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-TmvX2.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-L8d1m.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5799700a-2870-4909-a64e-66090a14153a-dq1kV.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5799700a-2870-4909-a64e-66090a14153a-x2L1N.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Show clean and simple prices on variable products\",\"Works with differing prices and sales of single\\/multiple variatio\",\"Easy 30 second install, no setup\"],\"created\":\"2016-07-27 20:52:43\",\"created_timestamp\":1469674363,\"demo_url\":\"http:\\/\\/demo.shatterstudios.net\\/wordpress\\/simple-variation-price\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"4753e30d8003a46d6f3d50c2ef08faa7\"},{\"id\":\"58b845c9-fd3c-4a75-bda4-4a4f0a141539\",\"name\":\"Super Simple Recipes for WordPress\",\"slug\":\"super-simple-recipes-for-wordpress\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/super-simple-recipes-for-wordpress\",\"sales_count\":22,\"is_service\":false,\"rating\":0,\"seller_name\":\"SculptureQode\",\"seller_url\":\"store\\/sculpture-qode\",\"tags\":\"responsive, food, print, recipe, nutrition, ratings\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58b845c9-fd3c-4a75-bda4-4a4f0a141539-YgQKl.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58b845c9-fd3c-4a75-bda4-4a4f0a141539-lFYTC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-w2KwE.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-dHd0p.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-rJZCO.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-xwR7j.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58b845c9-fd3c-4a75-bda4-4a4f0a141539-intXn.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58b845c9-fd3c-4a75-bda4-4a4f0a141539-9cW5R.png\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"29.00\",\"5_domain_license\":\"116.00\",\"developer_license\":\"725.00\"},\"features\":[\"Featured Recipe Images\",\"5 Star Recipe Ratings\",\"Google Friendly\"],\"created\":\"2017-03-02 09:18:29\",\"created_timestamp\":1488471509,\"demo_url\":\"http:\\/\\/healey.sculptureqode.com\\/easy-crispy-fries\\/#recipe-120\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"233550303d0e3d557253741a3a05f720\"},{\"id\":\"565ccf58-1990-4703-ad9e-10800a141f39\",\"name\":\"UPS Shipping Method for WooCommerce\",\"slug\":\"ups-shipping-method-for-woocommerce\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/ups-shipping-method-for-woocommerce\",\"sales_count\":19,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"Business, woocommerce, ups\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565ccf58-1990-4703-ad9e-10800a141f39-uBUnn.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565ccf58-1990-4703-ad9e-10800a141f39-JyL0v.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-RmbYA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-7jltm.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-RmbYA.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565ccf58-1990-4703-ad9e-10800a141f39-7jltm.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565ccf58-1990-4703-ad9e-10800a141f39-PAVBd.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"79.00\",\"5_domain_license\":\"316.00\",\"developer_license\":\"1975.00\"},\"features\":[\"Units Converted Automatically\",\"API\",\"Calculate Quotes Worldwide\"],\"created\":\"2015-11-30 15:36:21\",\"created_timestamp\":1448922981,\"demo_url\":\"http:\\/\\/www.woothemes.com\\/products\\/ups-shipping-method\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"565f4657-4fb8-4671-8342-3d980a141f38\",\"name\":\"WooSlider Ultimate WordPress Slideshow Plugin\",\"slug\":\"wooslider-ultimate-responsive-wordpress-slideshow-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wooslider-ultimate-responsive-wordpress-slideshow-plugin\",\"sales_count\":17,\"is_service\":false,\"rating\":0,\"seller_name\":\"woothemes\",\"seller_url\":\"store\\/woothemes\",\"tags\":\"responsive, WordPress, woocommerce\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-565f4657-4fb8-4671-8342-3d980a141f38-Keub5.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-565f4657-4fb8-4671-8342-3d980a141f38-TTJH8.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-lrHKQ.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-K6FIc.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-RLsqg.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-565f4657-4fb8-4671-8342-3d980a141f38-sjNEL.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-565f4657-4fb8-4671-8342-3d980a141f38-hRpZZ.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Content Layouts\",\"Pagination Controls\",\"Sliding Speed\"],\"created\":\"2015-12-02 12:30:23\",\"created_timestamp\":1449084623,\"demo_url\":\"http:\\/\\/wooslider.com\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"20a43fe4f147fe16a8eea8291629c6a2\"},{\"id\":\"5793b572-feb0-4db7-86f7-4f0c0a141539\",\"name\":\"WordPress Live Search and Auto Complete Search Plugin\",\"slug\":\"wordpress-live-search-and-auto-complete-search-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-live-search-and-auto-complete-search-plugin\",\"sales_count\":16,\"is_service\":false,\"rating\":0,\"seller_name\":\"Netflixtech\",\"seller_url\":\"store\\/netflixtech\",\"tags\":\"widgets, search\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5793b572-feb0-4db7-86f7-4f0c0a141539-gt78n.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5793b572-feb0-4db7-86f7-4f0c0a141539-MGZsh.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-T5ad5.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-VrhU4.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-H59XK.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-qrYVm.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5793b572-feb0-4db7-86f7-4f0c0a141539-6hnG0.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5793b572-feb0-4db7-86f7-4f0c0a141539-10vOf.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Support custom post type and taxonomy type\",\"Ajax Search support\",\"Instant search result with featured image\"],\"created\":\"2016-07-23 12:20:47\",\"created_timestamp\":1469298047,\"demo_url\":\"http:\\/\\/demo.netflixtech.com\\/shop\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"bba199e24571f9fe614b6995e1f58e2c\"},{\"id\":\"56baf822-a408-444b-8045-389e0a141f38\",\"name\":\"Mapo Neighborhood Map Plugin\",\"slug\":\"mapo-neighborhood-map-plugin\",\"category\":\"WordPress\",\"type\":\"plugins\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/mapo-neighborhood-map-plugin\",\"sales_count\":16,\"is_service\":false,\"rating\":0,\"seller_name\":\"layero\",\"seller_url\":\"store\\/layero-themes\",\"tags\":\"WordPress, location, map\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56baf822-a408-444b-8045-389e0a141f38-2jfgZ.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56baf822-a408-444b-8045-389e0a141f38-21nzC.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56baf822-a408-444b-8045-389e0a141f38-Awk64.PNG\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56baf822-a408-444b-8045-389e0a141f38-kiDbp.jpg\"},\"downloads\":[\"file_product\",\"file_documentation\",\"file_demo_data\"],\"prices\":{\"single_domain_license\":\"20.00\",\"5_domain_license\":\"80.00\",\"developer_license\":\"500.00\"},\"features\":[\"Google map\",\"Responsive Design\",\"Distance, Time\"],\"created\":\"2016-02-10 02:13:37\",\"created_timestamp\":1455095617,\"demo_url\":\"http:\\/\\/www.outcrafter.com\\/graha2\\/neighborhood-map-plugin\\/\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"0342c3ae2d68ea1fcba779f129a4c255\"}],\"page\":\"1\",\"pageCount\":3,\"records\":45}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:13:\"cache-control\";a:1:{i:0;s:3:\"900\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:50 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:10:\"set-cookie\";a:1:{i:0;s:143:\"SESSION=p30q3d57meh7d78bm0nj0vgqn3; expires=Sat, 05-Aug-2017 03:48:50 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:14:\"content-length\";a:1:{i:0;s:5:\"57962\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:104:\"https://api.mojomarketplace.com/api/v2/items?category=wordpress&type=plugins&count=20&order=sales&page=1\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"p30q3d57meh7d78bm0nj0vgqn3\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"expires\";i:1501904930;s:7:\"max-age\";i:1501904930;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:6:\"secure\";b:1;s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501544930;s:11:\"last-access\";i:1501544930;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501544930;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"eb58075fcbfd49c3a15b95e2092d92ac\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";s:1:\"*\";s:13:\"cache-control\";s:3:\"900\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:51 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:10:\"set-cookie\";s:143:\"SESSION=e4ucfqvjjhhup24darb71jgng3; expires=Sat, 05-Aug-2017 03:48:51 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:14:\"content-length\";s:5:\"30070\";}}s:4:\"body\";s:30070:\"{\"status\":\"success\",\"items\":[{\"id\":\"53078bcc-bf48-44e3-b131-4a870a141528\",\"name\":\"Install Your WordPress Theme\",\"slug\":\"install-your-wordpress-theme\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-your-wordpress-theme\",\"sales_count\":31248,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, setup, install, wp, service, upload\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-368x296-aM4zQ.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-136x136-CWC20.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-260x156-R0RQ5.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078bcc-bf48-44e3-b131-4a870a141528-1180x660-pmfOl.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:24:28\",\"created_timestamp\":1393003468,\"demo_url\":\"\",\"short_description\":\"<p>Once you\\u2019ve purchased a theme for your new website, the theme needs to be installed via FTP or your WordPress dashboard. Some MOJO users are comfortable installing themes on their own, but for those who need help, the MOJO Professional Services team is standing by to install your theme for you.<\\/p>\",\"logo_bg_color\":\"#45769f\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53078b6f-9af4-4c66-9ce7-77a00a140b28\",\"name\":\"Make My WordPress Site Look Like the Theme Demo\",\"slug\":\"make-my-wordpress-site-look-like-the-theme-demo\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/make-my-wordpress-site-look-like-the-theme-demo\",\"sales_count\":11004,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"service, demo, content, sample, dummy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-368x296-nj6Mn.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-136x136-HBjNN.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-260x156-icda5.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078b6f-9af4-4c66-9ce7-77a00a140b28-1180x660-IGt0f.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:22:55\",\"created_timestamp\":1393003375,\"demo_url\":\"\",\"short_description\":\"<p>Each theme on MOJO Marketplace has a pre-configured demo to showcase the theme\\u2019s capabilities; things like style options, built in functionality, etc.. This is purely an example. WordPress allows for endless configuration and customization options for moderate to advanced users. But if you\\u2019d like to simply mirror the site setup displayed by the theme\\u2019s demo, and require assistance, this service will get you up and running.<\\/p>\",\"logo_bg_color\":\"#2276be\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340948-aff4-41d1-b5d4-0cf10a141528\",\"name\":\"WordPress Starter\",\"slug\":\"wordpress-starter\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-starter\",\"sales_count\":5700,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, install, starter, script\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-368x296-zh90x.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-136x136-dPjxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-260x156-pLSRC.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340948-aff4-41d1-b5d4-0cf10a141528-1180x660-55ttz.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:39:52\",\"created_timestamp\":1412696392,\"demo_url\":\"\",\"short_description\":\"<p>If you aren\\u2019t sure how to get started with your site, let us do it for you! This package is great if you are looking to get WordPress along with help getting a WordPress theme installed and ready for your customizations.<\\/p>\\n<p>\\u00a0<\\/p>\",\"logo_bg_color\":\"#1f4d74\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340cce-384c-4e2f-a43a-636c0a140b28\",\"name\":\"WordPress All-In-One\",\"slug\":\"wordpress-all-in-one\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-all-in-one\",\"sales_count\":2255,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, seo, training, setup, install, backup, help, service, Technician\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-368x296-znJjm.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-136x136-AxVAF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-260x156-u4cGG.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340cce-384c-4e2f-a43a-636c0a140b28-1180x660-FiGIs.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"399.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:54:54\",\"created_timestamp\":1412697294,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:100%;font-family:arial, sans, sans-serif;\\\">Turk-key website - We\'ll help you install WP, your theme &amp; demo. Includes SEO, backup, site security. Plus 30 minute theme training &amp; more!<\\/span><\\/p>\",\"logo_bg_color\":\"#346175\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340b9a-8bb4-4418-bf37-618e0a140b28\",\"name\":\"WordPress Pro\",\"slug\":\"wordpress-pro\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-pro\",\"sales_count\":2106,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, setup, install, backup, service, bundle\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-368x296-E7VxS.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-136x136-XdFg7.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-260x156-1Om24.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340b9a-8bb4-4418-bf37-618e0a140b28-1180x660-a36aq.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"199.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:49:46\",\"created_timestamp\":1412696986,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:100%;font-family:arial, sans, sans-serif;\\\">We\'ll help you install WP, your theme &amp; demo. Includes backup service and $59 theme credit.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#2276be\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\"name\":\"Backup Your WordPress Website\",\"slug\":\"backup-your-wordpress-website\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\"sales_count\":1745,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-368x296-Fp1oS.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-136x136-tDcqG.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-mZS1T.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53e00b04-03b8-4025-bb75-173c0a141528-1180x660-1isGp.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-08-04 16:36:52\",\"created_timestamp\":1407191812,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us save your site by installing and setting up a backup service to your WordPress dashboard.<\\/span><\\/p>\",\"logo_bg_color\":\"#0a5a7c\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\"name\":\"Make My WordPress Site Secure\",\"slug\":\"make-my-wordpress-site-secure\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\"sales_count\":918,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"security, secure, hack, hacked\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-368x296-9FyGe.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-136x136-IMT04.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-yahn4.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53b4501f-180c-4bd3-9b3f-56cb0a141528-1180x660-lEO77.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-07-02 12:31:59\",\"created_timestamp\":1404325919,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">We will help you defend your WordPress site against hackers with this site security service.<\\/span><\\/p>\",\"logo_bg_color\":\"#0b1a23\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"5668aa85-b3b8-4239-ae8c-08090a141f39\",\"name\":\"Rush My Service\",\"slug\":\"rush-my-service\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/rush-my-service\",\"sales_count\":660,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"quick\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-368x296-hTbBX.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-136x136-aFeOw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-260x156-Om4u3.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5668aa85-b3b8-4239-ae8c-08090a141f39-1180x660-P4HjY.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2015-12-09 15:26:13\",\"created_timestamp\":1449699973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#FD8F47\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\"name\":\"WordPress SEO &amp; Sitemap\",\"slug\":\"wordpress-seo-amp-sitemap\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-seo-amp-sitemap\",\"sales_count\":565,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"seo\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-368x296-bIpxu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-136x136-ApafB.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-5Neme.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-1180x660-jAyp8.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-07-29 12:39:09\",\"created_timestamp\":1406659149,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#e8c959\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\"name\":\"Integrate WooCommerce onto WordPress Site\",\"slug\":\"integrate-woocommerce-onto-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\"sales_count\":468,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"store, woocommerce, Commerce, sales, service, woo, emarketing\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-368x296-rIRrk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-136x136-Be0ic.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-260x156-27fzK.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-530782e3-1388-4e6a-a8ac-6f7b0a140b28-1180x660-Kg0Oh.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-02-21 09:46:27\",\"created_timestamp\":1393001187,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">We will help you launch your online store by integrating WooCommerce onto your WordPress site.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#202020\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\"name\":\"Add Google Analytics to Your WordPress Site\",\"slug\":\"add-google-analytics-to-your-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\"sales_count\":383,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"seo, google, track, analytics, graph, tracking, stats, statistics, analysis, cpm\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-368x296-GTUvV.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-136x136-GkCwc.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-530697a6-92cc-4329-9cdd-21e40a140b28-1180x660-hBnKZ.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-20 17:02:46\",\"created_timestamp\":1392940966,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us help you track your efforts by integrating Google Analytics into your WordPress site.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#ee582e\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"532c8ae2-5c38-4636-8c69-15550a141528\",\"name\":\"Install WordPress Theme &amp; Integrate WooCommerce\",\"slug\":\"install-wordpress-theme-amp-integrate-woocommerce\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-wordpress-theme-amp-integrate-woocommerce\",\"sales_count\":299,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"theme, store, woocommerce, Commerce, sales, setup, install, service, woo\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-368x296-rZp75.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-136x136-bvGo5.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-WsBqu.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-532c8ae2-5c38-4636-8c69-15550a141528-1180x660-GD7ek.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-03-21 12:54:26\",\"created_timestamp\":1395428066,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us install your WordPress theme, plus we\'ll launch your online store by integrating WooCommerce into your site.<\\/span><\\/p>\",\"logo_bg_color\":\"#202020\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53b311aa-4e38-4323-b14e-4a1a0a140b28\",\"name\":\"Ultimate WordPress Website Launch Kit\",\"slug\":\"ultimate-wordpress-website-launch-kit\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/ultimate-wordpress-website-launch-kit\",\"sales_count\":289,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, install, starter\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-368x296-9Tb1l.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-136x136-ZlJgx.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-260x156-20V6C.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53b311aa-4e38-4323-b14e-4a1a0a140b28-1180x660-vDR7d.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"299.00\"},\"features\":\"\",\"created\":\"2014-07-01 13:53:14\",\"created_timestamp\":1404244394,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#453363\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"55b6b4f5-d8f0-4463-a79e-3a2c0a141f37\",\"name\":\"WooCommerce All In One\",\"slug\":\"woocommerce-all-in-one\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/woocommerce-all-in-one\",\"sales_count\":75,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, store, woocommerce\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-368x296-W6yaz.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-136x136-Klnrk.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-260x156-XeX6H.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-1180x660-P8ZOL.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"499.00\"},\"features\":\"\",\"created\":\"2015-07-27 16:47:17\",\"created_timestamp\":1438037237,\"demo_url\":\"\",\"short_description\":\"<p>This WooCommerce Bundle Pack includes all of the essentials for you to get your online business up and running. Avoid the steep learning curves of WordPress and allow us to grind out the tough stuff so you can start selling online with ease!\\u00a0<\\/p>\",\"logo_bg_color\":\"#00BFFF\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"56bcf922-da60-490d-a67b-49b90a141f37\",\"name\":\"Install My WordPress Plugin\",\"slug\":\"install-my-wordpress-plugin\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-my-wordpress-plugin\",\"sales_count\":60,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, Custom, plugins, plugin, install, extensions\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-368x296-2OZvr.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-136x136-M52Me.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-260x156-ZOrlh.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56bcf922-da60-490d-a67b-49b90a141f37-1180x660-xoBuN.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"59.00\"},\"features\":\"\",\"created\":\"2016-02-11 14:12:02\",\"created_timestamp\":1455225122,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#ff1493\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53078468-fc10-45de-b813-70b70a140b28\",\"name\":\"Create a WordPress Contact Form\",\"slug\":\"create-a-wordpress-contact-form\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/create-a-wordpress-contact-form\",\"sales_count\":43,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, form, email, contact, message, service\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078468-fc10-45de-b813-70b70a140b28-368x296-SdwTK.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078468-fc10-45de-b813-70b70a140b28-136x136-8dPZY.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078468-fc10-45de-b813-70b70a140b28-260x156-u80Dw.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078468-fc10-45de-b813-70b70a140b28-1180x660-RIIdX.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 09:52:56\",\"created_timestamp\":1393001576,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#413b3b\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"5681b062-b7b0-484b-bcef-2fd20a141f39\",\"name\":\"Integrate PayPal into my WordPress Site\",\"slug\":\"integrate-paypal-into-my-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/integrate-paypal-into-my-wordpress-site\",\"sales_count\":36,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"PayPal, Business, cart, shop, store, Shopping, pay, checkout\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-368x296-xIU4b.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-136x136-Td9Dz.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-260x156-GksGf.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5681b062-b7b0-484b-bcef-2fd20a141f39-1180x660-GzdFX.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2015-12-28 14:57:54\",\"created_timestamp\":1451339874,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#ff1493\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\"name\":\"Add a Google Map to my WordPress Site\",\"slug\":\"add-a-google-map-to-my-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\"sales_count\":20,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"location, address, map, satellite\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-thumb-mm-resize-136x136-530d15ff8ce36.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530786ea-27b8-4f1b-bc94-46650a141528-large-mm-resize-1180x660-530d15fecff73.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:03:38\",\"created_timestamp\":1393002218,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"55db7979-b07c-484c-a6bd-7d270a141f39\",\"name\":\"WooCommerce Training for Beginners\",\"slug\":\"woocommerce-training-for-beginners\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/woocommerce-training-for-beginners\",\"sales_count\":5,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, cart, shop, store, sell, woocommerce, video, Shopping, phone, training, record, service\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-368x296-Zm9p2.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-136x136-4jBbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-260x156-RwaJA.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55db7979-b07c-484c-a6bd-7d270a141f39-1180x660-0u0J6.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"199.00\"},\"features\":\"\",\"created\":\"2015-08-24 14:07:21\",\"created_timestamp\":1440446841,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#000000\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"594b161a-45a8-4535-a091-62c20a14153b\",\"name\":\"Custom Designed Logo Beautifully Designed Custom Logos\",\"slug\":\"custom-designed-logo\",\"category\":\"design\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/custom-designed-logo\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":\"RipeConcepts\",\"seller_url\":\"store\\/ripeconcepts-inc\",\"tags\":\"fashion, elegant, company, Business, professional, design, logo, clean, modern, creative\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-594b161a-f91c-44af-94a0-62c20a14153b-AiVNj.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-594b161a-f91c-44af-94a0-62c20a14153b-hMfOG.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-594b161a-f91c-44af-94a0-62c20a14153b-wslmr.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-594b161a-f91c-44af-94a0-62c20a14153b-jmVVx.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"189.00\"},\"features\":[\"2 Rounds of Revisions Included For Free\",\"World-class Design on a Budget\",\"Each Logo Composition is a Unique Design by a Different Artist\"],\"created\":\"2017-06-21 18:58:02\",\"created_timestamp\":1498093082,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"99d226b9c7b8d29719594ec612bff89f\"}],\"page\":\"1\",\"pageCount\":1,\"records\":20}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"e4ucfqvjjhhup24darb71jgng3\";s:7:\"expires\";i:1501904931;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:30070:\"{\"status\":\"success\",\"items\":[{\"id\":\"53078bcc-bf48-44e3-b131-4a870a141528\",\"name\":\"Install Your WordPress Theme\",\"slug\":\"install-your-wordpress-theme\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-your-wordpress-theme\",\"sales_count\":31248,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, setup, install, wp, service, upload\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-368x296-aM4zQ.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-136x136-CWC20.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-260x156-R0RQ5.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078bcc-bf48-44e3-b131-4a870a141528-1180x660-pmfOl.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:24:28\",\"created_timestamp\":1393003468,\"demo_url\":\"\",\"short_description\":\"<p>Once you\\u2019ve purchased a theme for your new website, the theme needs to be installed via FTP or your WordPress dashboard. Some MOJO users are comfortable installing themes on their own, but for those who need help, the MOJO Professional Services team is standing by to install your theme for you.<\\/p>\",\"logo_bg_color\":\"#45769f\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53078b6f-9af4-4c66-9ce7-77a00a140b28\",\"name\":\"Make My WordPress Site Look Like the Theme Demo\",\"slug\":\"make-my-wordpress-site-look-like-the-theme-demo\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/make-my-wordpress-site-look-like-the-theme-demo\",\"sales_count\":11004,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"service, demo, content, sample, dummy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-368x296-nj6Mn.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-136x136-HBjNN.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-260x156-icda5.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078b6f-9af4-4c66-9ce7-77a00a140b28-1180x660-IGt0f.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:22:55\",\"created_timestamp\":1393003375,\"demo_url\":\"\",\"short_description\":\"<p>Each theme on MOJO Marketplace has a pre-configured demo to showcase the theme\\u2019s capabilities; things like style options, built in functionality, etc.. This is purely an example. WordPress allows for endless configuration and customization options for moderate to advanced users. But if you\\u2019d like to simply mirror the site setup displayed by the theme\\u2019s demo, and require assistance, this service will get you up and running.<\\/p>\",\"logo_bg_color\":\"#2276be\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340948-aff4-41d1-b5d4-0cf10a141528\",\"name\":\"WordPress Starter\",\"slug\":\"wordpress-starter\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-starter\",\"sales_count\":5700,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, install, starter, script\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-368x296-zh90x.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-136x136-dPjxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-260x156-pLSRC.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340948-aff4-41d1-b5d4-0cf10a141528-1180x660-55ttz.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:39:52\",\"created_timestamp\":1412696392,\"demo_url\":\"\",\"short_description\":\"<p>If you aren\\u2019t sure how to get started with your site, let us do it for you! This package is great if you are looking to get WordPress along with help getting a WordPress theme installed and ready for your customizations.<\\/p>\\n<p>\\u00a0<\\/p>\",\"logo_bg_color\":\"#1f4d74\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340cce-384c-4e2f-a43a-636c0a140b28\",\"name\":\"WordPress All-In-One\",\"slug\":\"wordpress-all-in-one\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-all-in-one\",\"sales_count\":2255,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, seo, training, setup, install, backup, help, service, Technician\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-368x296-znJjm.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-136x136-AxVAF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-260x156-u4cGG.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340cce-384c-4e2f-a43a-636c0a140b28-1180x660-FiGIs.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"399.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:54:54\",\"created_timestamp\":1412697294,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:100%;font-family:arial, sans, sans-serif;\\\">Turk-key website - We\'ll help you install WP, your theme &amp; demo. Includes SEO, backup, site security. Plus 30 minute theme training &amp; more!<\\/span><\\/p>\",\"logo_bg_color\":\"#346175\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340b9a-8bb4-4418-bf37-618e0a140b28\",\"name\":\"WordPress Pro\",\"slug\":\"wordpress-pro\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-pro\",\"sales_count\":2106,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, setup, install, backup, service, bundle\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-368x296-E7VxS.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-136x136-XdFg7.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-260x156-1Om24.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340b9a-8bb4-4418-bf37-618e0a140b28-1180x660-a36aq.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"199.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:49:46\",\"created_timestamp\":1412696986,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:100%;font-family:arial, sans, sans-serif;\\\">We\'ll help you install WP, your theme &amp; demo. Includes backup service and $59 theme credit.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#2276be\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\"name\":\"Backup Your WordPress Website\",\"slug\":\"backup-your-wordpress-website\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\"sales_count\":1745,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-368x296-Fp1oS.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-136x136-tDcqG.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-mZS1T.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53e00b04-03b8-4025-bb75-173c0a141528-1180x660-1isGp.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-08-04 16:36:52\",\"created_timestamp\":1407191812,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us save your site by installing and setting up a backup service to your WordPress dashboard.<\\/span><\\/p>\",\"logo_bg_color\":\"#0a5a7c\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\"name\":\"Make My WordPress Site Secure\",\"slug\":\"make-my-wordpress-site-secure\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\"sales_count\":918,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"security, secure, hack, hacked\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-368x296-9FyGe.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-136x136-IMT04.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-yahn4.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53b4501f-180c-4bd3-9b3f-56cb0a141528-1180x660-lEO77.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-07-02 12:31:59\",\"created_timestamp\":1404325919,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">We will help you defend your WordPress site against hackers with this site security service.<\\/span><\\/p>\",\"logo_bg_color\":\"#0b1a23\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"5668aa85-b3b8-4239-ae8c-08090a141f39\",\"name\":\"Rush My Service\",\"slug\":\"rush-my-service\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/rush-my-service\",\"sales_count\":660,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"quick\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-368x296-hTbBX.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-136x136-aFeOw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-260x156-Om4u3.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5668aa85-b3b8-4239-ae8c-08090a141f39-1180x660-P4HjY.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2015-12-09 15:26:13\",\"created_timestamp\":1449699973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#FD8F47\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\"name\":\"WordPress SEO &amp; Sitemap\",\"slug\":\"wordpress-seo-amp-sitemap\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-seo-amp-sitemap\",\"sales_count\":565,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"seo\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-368x296-bIpxu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-136x136-ApafB.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-5Neme.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-1180x660-jAyp8.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-07-29 12:39:09\",\"created_timestamp\":1406659149,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#e8c959\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\"name\":\"Integrate WooCommerce onto WordPress Site\",\"slug\":\"integrate-woocommerce-onto-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\"sales_count\":468,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"store, woocommerce, Commerce, sales, service, woo, emarketing\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-368x296-rIRrk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-136x136-Be0ic.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-260x156-27fzK.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-530782e3-1388-4e6a-a8ac-6f7b0a140b28-1180x660-Kg0Oh.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-02-21 09:46:27\",\"created_timestamp\":1393001187,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">We will help you launch your online store by integrating WooCommerce onto your WordPress site.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#202020\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\"name\":\"Add Google Analytics to Your WordPress Site\",\"slug\":\"add-google-analytics-to-your-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\"sales_count\":383,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"seo, google, track, analytics, graph, tracking, stats, statistics, analysis, cpm\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-368x296-GTUvV.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-136x136-GkCwc.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-530697a6-92cc-4329-9cdd-21e40a140b28-1180x660-hBnKZ.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-20 17:02:46\",\"created_timestamp\":1392940966,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us help you track your efforts by integrating Google Analytics into your WordPress site.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#ee582e\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"532c8ae2-5c38-4636-8c69-15550a141528\",\"name\":\"Install WordPress Theme &amp; Integrate WooCommerce\",\"slug\":\"install-wordpress-theme-amp-integrate-woocommerce\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-wordpress-theme-amp-integrate-woocommerce\",\"sales_count\":299,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"theme, store, woocommerce, Commerce, sales, setup, install, service, woo\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-368x296-rZp75.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-136x136-bvGo5.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-WsBqu.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-532c8ae2-5c38-4636-8c69-15550a141528-1180x660-GD7ek.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-03-21 12:54:26\",\"created_timestamp\":1395428066,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us install your WordPress theme, plus we\'ll launch your online store by integrating WooCommerce into your site.<\\/span><\\/p>\",\"logo_bg_color\":\"#202020\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53b311aa-4e38-4323-b14e-4a1a0a140b28\",\"name\":\"Ultimate WordPress Website Launch Kit\",\"slug\":\"ultimate-wordpress-website-launch-kit\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/ultimate-wordpress-website-launch-kit\",\"sales_count\":289,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, install, starter\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-368x296-9Tb1l.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-136x136-ZlJgx.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-260x156-20V6C.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53b311aa-4e38-4323-b14e-4a1a0a140b28-1180x660-vDR7d.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"299.00\"},\"features\":\"\",\"created\":\"2014-07-01 13:53:14\",\"created_timestamp\":1404244394,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#453363\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"55b6b4f5-d8f0-4463-a79e-3a2c0a141f37\",\"name\":\"WooCommerce All In One\",\"slug\":\"woocommerce-all-in-one\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/woocommerce-all-in-one\",\"sales_count\":75,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, store, woocommerce\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-368x296-W6yaz.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-136x136-Klnrk.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-260x156-XeX6H.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-1180x660-P8ZOL.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"499.00\"},\"features\":\"\",\"created\":\"2015-07-27 16:47:17\",\"created_timestamp\":1438037237,\"demo_url\":\"\",\"short_description\":\"<p>This WooCommerce Bundle Pack includes all of the essentials for you to get your online business up and running. Avoid the steep learning curves of WordPress and allow us to grind out the tough stuff so you can start selling online with ease!\\u00a0<\\/p>\",\"logo_bg_color\":\"#00BFFF\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"56bcf922-da60-490d-a67b-49b90a141f37\",\"name\":\"Install My WordPress Plugin\",\"slug\":\"install-my-wordpress-plugin\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-my-wordpress-plugin\",\"sales_count\":60,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, Custom, plugins, plugin, install, extensions\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-368x296-2OZvr.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-136x136-M52Me.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-260x156-ZOrlh.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56bcf922-da60-490d-a67b-49b90a141f37-1180x660-xoBuN.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"59.00\"},\"features\":\"\",\"created\":\"2016-02-11 14:12:02\",\"created_timestamp\":1455225122,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#ff1493\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53078468-fc10-45de-b813-70b70a140b28\",\"name\":\"Create a WordPress Contact Form\",\"slug\":\"create-a-wordpress-contact-form\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/create-a-wordpress-contact-form\",\"sales_count\":43,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, form, email, contact, message, service\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078468-fc10-45de-b813-70b70a140b28-368x296-SdwTK.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078468-fc10-45de-b813-70b70a140b28-136x136-8dPZY.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078468-fc10-45de-b813-70b70a140b28-260x156-u80Dw.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078468-fc10-45de-b813-70b70a140b28-1180x660-RIIdX.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 09:52:56\",\"created_timestamp\":1393001576,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#413b3b\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"5681b062-b7b0-484b-bcef-2fd20a141f39\",\"name\":\"Integrate PayPal into my WordPress Site\",\"slug\":\"integrate-paypal-into-my-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/integrate-paypal-into-my-wordpress-site\",\"sales_count\":36,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"PayPal, Business, cart, shop, store, Shopping, pay, checkout\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-368x296-xIU4b.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-136x136-Td9Dz.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-260x156-GksGf.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5681b062-b7b0-484b-bcef-2fd20a141f39-1180x660-GzdFX.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2015-12-28 14:57:54\",\"created_timestamp\":1451339874,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#ff1493\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\"name\":\"Add a Google Map to my WordPress Site\",\"slug\":\"add-a-google-map-to-my-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\"sales_count\":20,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"location, address, map, satellite\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-thumb-mm-resize-136x136-530d15ff8ce36.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530786ea-27b8-4f1b-bc94-46650a141528-large-mm-resize-1180x660-530d15fecff73.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:03:38\",\"created_timestamp\":1393002218,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"55db7979-b07c-484c-a6bd-7d270a141f39\",\"name\":\"WooCommerce Training for Beginners\",\"slug\":\"woocommerce-training-for-beginners\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/woocommerce-training-for-beginners\",\"sales_count\":5,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, cart, shop, store, sell, woocommerce, video, Shopping, phone, training, record, service\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-368x296-Zm9p2.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-136x136-4jBbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-260x156-RwaJA.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55db7979-b07c-484c-a6bd-7d270a141f39-1180x660-0u0J6.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"199.00\"},\"features\":\"\",\"created\":\"2015-08-24 14:07:21\",\"created_timestamp\":1440446841,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#000000\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"594b161a-45a8-4535-a091-62c20a14153b\",\"name\":\"Custom Designed Logo Beautifully Designed Custom Logos\",\"slug\":\"custom-designed-logo\",\"category\":\"design\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/custom-designed-logo\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":\"RipeConcepts\",\"seller_url\":\"store\\/ripeconcepts-inc\",\"tags\":\"fashion, elegant, company, Business, professional, design, logo, clean, modern, creative\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-594b161a-f91c-44af-94a0-62c20a14153b-AiVNj.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-594b161a-f91c-44af-94a0-62c20a14153b-hMfOG.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-594b161a-f91c-44af-94a0-62c20a14153b-wslmr.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-594b161a-f91c-44af-94a0-62c20a14153b-jmVVx.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"189.00\"},\"features\":[\"2 Rounds of Revisions Included For Free\",\"World-class Design on a Budget\",\"Each Logo Composition is a Unique Design by a Different Artist\"],\"created\":\"2017-06-21 18:58:02\",\"created_timestamp\":1498093082,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"99d226b9c7b8d29719594ec612bff89f\"}],\"page\":\"1\",\"pageCount\":1,\"records\":20}\";s:3:\"raw\";s:30472:\"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nCache-Control: 900\r\nContent-Type: application/json; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:48:51 GMT\r\nServer: nginx/1.10.1\r\nSet-Cookie: SESSION=e4ucfqvjjhhup24darb71jgng3; expires=Sat, 05-Aug-2017 03:48:51 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\r\nX-Powered-By: PHP/5.6.22\r\nContent-Length: 30070\r\nConnection: Close\r\n\r\n{\"status\":\"success\",\"items\":[{\"id\":\"53078bcc-bf48-44e3-b131-4a870a141528\",\"name\":\"Install Your WordPress Theme\",\"slug\":\"install-your-wordpress-theme\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-your-wordpress-theme\",\"sales_count\":31248,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, setup, install, wp, service, upload\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-368x296-aM4zQ.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-136x136-CWC20.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078bcc-bf48-44e3-b131-4a870a141528-260x156-R0RQ5.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078bcc-bf48-44e3-b131-4a870a141528-1180x660-pmfOl.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:24:28\",\"created_timestamp\":1393003468,\"demo_url\":\"\",\"short_description\":\"<p>Once you\\u2019ve purchased a theme for your new website, the theme needs to be installed via FTP or your WordPress dashboard. Some MOJO users are comfortable installing themes on their own, but for those who need help, the MOJO Professional Services team is standing by to install your theme for you.<\\/p>\",\"logo_bg_color\":\"#45769f\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53078b6f-9af4-4c66-9ce7-77a00a140b28\",\"name\":\"Make My WordPress Site Look Like the Theme Demo\",\"slug\":\"make-my-wordpress-site-look-like-the-theme-demo\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/make-my-wordpress-site-look-like-the-theme-demo\",\"sales_count\":11004,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"service, demo, content, sample, dummy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-368x296-nj6Mn.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-136x136-HBjNN.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078b6f-9af4-4c66-9ce7-77a00a140b28-260x156-icda5.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078b6f-9af4-4c66-9ce7-77a00a140b28-1180x660-IGt0f.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:22:55\",\"created_timestamp\":1393003375,\"demo_url\":\"\",\"short_description\":\"<p>Each theme on MOJO Marketplace has a pre-configured demo to showcase the theme\\u2019s capabilities; things like style options, built in functionality, etc.. This is purely an example. WordPress allows for endless configuration and customization options for moderate to advanced users. But if you\\u2019d like to simply mirror the site setup displayed by the theme\\u2019s demo, and require assistance, this service will get you up and running.<\\/p>\",\"logo_bg_color\":\"#2276be\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340948-aff4-41d1-b5d4-0cf10a141528\",\"name\":\"WordPress Starter\",\"slug\":\"wordpress-starter\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-starter\",\"sales_count\":5700,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, install, starter, script\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-368x296-zh90x.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-136x136-dPjxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340948-aff4-41d1-b5d4-0cf10a141528-260x156-pLSRC.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340948-aff4-41d1-b5d4-0cf10a141528-1180x660-55ttz.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:39:52\",\"created_timestamp\":1412696392,\"demo_url\":\"\",\"short_description\":\"<p>If you aren\\u2019t sure how to get started with your site, let us do it for you! This package is great if you are looking to get WordPress along with help getting a WordPress theme installed and ready for your customizations.<\\/p>\\n<p>\\u00a0<\\/p>\",\"logo_bg_color\":\"#1f4d74\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340cce-384c-4e2f-a43a-636c0a140b28\",\"name\":\"WordPress All-In-One\",\"slug\":\"wordpress-all-in-one\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-all-in-one\",\"sales_count\":2255,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, seo, training, setup, install, backup, help, service, Technician\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-368x296-znJjm.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-136x136-AxVAF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340cce-384c-4e2f-a43a-636c0a140b28-260x156-u4cGG.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340cce-384c-4e2f-a43a-636c0a140b28-1180x660-FiGIs.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"399.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:54:54\",\"created_timestamp\":1412697294,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:100%;font-family:arial, sans, sans-serif;\\\">Turk-key website - We\'ll help you install WP, your theme &amp; demo. Includes SEO, backup, site security. Plus 30 minute theme training &amp; more!<\\/span><\\/p>\",\"logo_bg_color\":\"#346175\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"54340b9a-8bb4-4418-bf37-618e0a140b28\",\"name\":\"WordPress Pro\",\"slug\":\"wordpress-pro\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-pro\",\"sales_count\":2106,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, theme, setup, install, backup, service, bundle\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-368x296-E7VxS.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-136x136-XdFg7.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54340b9a-8bb4-4418-bf37-618e0a140b28-260x156-1Om24.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54340b9a-8bb4-4418-bf37-618e0a140b28-1180x660-a36aq.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"199.00\"},\"features\":\"\",\"created\":\"2014-10-07 09:49:46\",\"created_timestamp\":1412696986,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:100%;font-family:arial, sans, sans-serif;\\\">We\'ll help you install WP, your theme &amp; demo. Includes backup service and $59 theme credit.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#2276be\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53e00b04-03b8-4025-bb75-173c0a141528\",\"name\":\"Backup Your WordPress Website\",\"slug\":\"backup-your-wordpress-website\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/backup-your-wordpress-website\",\"sales_count\":1745,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-368x296-Fp1oS.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-136x136-tDcqG.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53e00b04-03b8-4025-bb75-173c0a141528-260x156-mZS1T.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53e00b04-03b8-4025-bb75-173c0a141528-1180x660-1isGp.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-08-04 16:36:52\",\"created_timestamp\":1407191812,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us save your site by installing and setting up a backup service to your WordPress dashboard.<\\/span><\\/p>\",\"logo_bg_color\":\"#0a5a7c\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53b4501f-180c-4bd3-9b3f-56cb0a141528\",\"name\":\"Make My WordPress Site Secure\",\"slug\":\"make-my-wordpress-site-secure\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/make-my-wordpress-site-secure\",\"sales_count\":918,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"security, secure, hack, hacked\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-368x296-9FyGe.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-136x136-IMT04.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b4501f-180c-4bd3-9b3f-56cb0a141528-260x156-yahn4.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53b4501f-180c-4bd3-9b3f-56cb0a141528-1180x660-lEO77.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-07-02 12:31:59\",\"created_timestamp\":1404325919,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">We will help you defend your WordPress site against hackers with this site security service.<\\/span><\\/p>\",\"logo_bg_color\":\"#0b1a23\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"5668aa85-b3b8-4239-ae8c-08090a141f39\",\"name\":\"Rush My Service\",\"slug\":\"rush-my-service\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/rush-my-service\",\"sales_count\":660,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"quick\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-368x296-hTbBX.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-136x136-aFeOw.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5668aa85-b3b8-4239-ae8c-08090a141f39-260x156-Om4u3.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5668aa85-b3b8-4239-ae8c-08090a141f39-1180x660-P4HjY.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2015-12-09 15:26:13\",\"created_timestamp\":1449699973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#FD8F47\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53d7ea4d-e52c-42fe-9b7e-5ed50a141528\",\"name\":\"WordPress SEO &amp; Sitemap\",\"slug\":\"wordpress-seo-amp-sitemap\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/wordpress-seo-amp-sitemap\",\"sales_count\":565,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"seo\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-368x296-bIpxu.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-136x136-ApafB.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-260x156-5Neme.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53d7ea4d-e52c-42fe-9b7e-5ed50a141528-1180x660-jAyp8.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2014-07-29 12:39:09\",\"created_timestamp\":1406659149,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#e8c959\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530782e3-1388-4e6a-a8ac-6f7b0a140b28\",\"name\":\"Integrate WooCommerce onto WordPress Site\",\"slug\":\"integrate-woocommerce-onto-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/integrate-woocommerce-onto-wordpress-site\",\"sales_count\":468,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"store, woocommerce, Commerce, sales, service, woo, emarketing\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-368x296-rIRrk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-136x136-Be0ic.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530782e3-1388-4e6a-a8ac-6f7b0a140b28-260x156-27fzK.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-530782e3-1388-4e6a-a8ac-6f7b0a140b28-1180x660-Kg0Oh.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-02-21 09:46:27\",\"created_timestamp\":1393001187,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">We will help you launch your online store by integrating WooCommerce onto your WordPress site.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#202020\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530697a6-92cc-4329-9cdd-21e40a140b28\",\"name\":\"Add Google Analytics to Your WordPress Site\",\"slug\":\"add-google-analytics-to-your-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/add-google-analytics-to-your-wordpress-site\",\"sales_count\":383,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"seo, google, track, analytics, graph, tracking, stats, statistics, analysis, cpm\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-368x296-GTUvV.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-136x136-GkCwc.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-530697a6-92cc-4329-9cdd-21e40a140b28-260x156-UXxnX.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-530697a6-92cc-4329-9cdd-21e40a140b28-1180x660-hBnKZ.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-20 17:02:46\",\"created_timestamp\":1392940966,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us help you track your efforts by integrating Google Analytics into your WordPress site.\\u00a0<\\/span><\\/p>\",\"logo_bg_color\":\"#ee582e\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"532c8ae2-5c38-4636-8c69-15550a141528\",\"name\":\"Install WordPress Theme &amp; Integrate WooCommerce\",\"slug\":\"install-wordpress-theme-amp-integrate-woocommerce\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-wordpress-theme-amp-integrate-woocommerce\",\"sales_count\":299,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"theme, store, woocommerce, Commerce, sales, setup, install, service, woo\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-368x296-rZp75.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-136x136-bvGo5.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-532c8ae2-5c38-4636-8c69-15550a141528-260x156-WsBqu.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-532c8ae2-5c38-4636-8c69-15550a141528-1180x660-GD7ek.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"149.00\"},\"features\":\"\",\"created\":\"2014-03-21 12:54:26\",\"created_timestamp\":1395428066,\"demo_url\":\"\",\"short_description\":\"<p><span style=\\\"font-size:13px;font-family:arial, sans, sans-serif;\\\">Let us install your WordPress theme, plus we\'ll launch your online store by integrating WooCommerce into your site.<\\/span><\\/p>\",\"logo_bg_color\":\"#202020\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53b311aa-4e38-4323-b14e-4a1a0a140b28\",\"name\":\"Ultimate WordPress Website Launch Kit\",\"slug\":\"ultimate-wordpress-website-launch-kit\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/ultimate-wordpress-website-launch-kit\",\"sales_count\":289,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, install, starter\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-368x296-9Tb1l.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-136x136-ZlJgx.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53b311aa-4e38-4323-b14e-4a1a0a140b28-260x156-20V6C.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53b311aa-4e38-4323-b14e-4a1a0a140b28-1180x660-vDR7d.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"299.00\"},\"features\":\"\",\"created\":\"2014-07-01 13:53:14\",\"created_timestamp\":1404244394,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#453363\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"55b6b4f5-d8f0-4463-a79e-3a2c0a141f37\",\"name\":\"WooCommerce All In One\",\"slug\":\"woocommerce-all-in-one\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/woocommerce-all-in-one\",\"sales_count\":75,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, store, woocommerce\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-368x296-W6yaz.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-136x136-Klnrk.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-260x156-XeX6H.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55b6b4f5-d8f0-4463-a79e-3a2c0a141f37-1180x660-P8ZOL.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"499.00\"},\"features\":\"\",\"created\":\"2015-07-27 16:47:17\",\"created_timestamp\":1438037237,\"demo_url\":\"\",\"short_description\":\"<p>This WooCommerce Bundle Pack includes all of the essentials for you to get your online business up and running. Avoid the steep learning curves of WordPress and allow us to grind out the tough stuff so you can start selling online with ease!\\u00a0<\\/p>\",\"logo_bg_color\":\"#00BFFF\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"56bcf922-da60-490d-a67b-49b90a141f37\",\"name\":\"Install My WordPress Plugin\",\"slug\":\"install-my-wordpress-plugin\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/install-my-wordpress-plugin\",\"sales_count\":60,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, Custom, plugins, plugin, install, extensions\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-368x296-2OZvr.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-136x136-M52Me.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56bcf922-da60-490d-a67b-49b90a141f37-260x156-ZOrlh.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56bcf922-da60-490d-a67b-49b90a141f37-1180x660-xoBuN.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"59.00\"},\"features\":\"\",\"created\":\"2016-02-11 14:12:02\",\"created_timestamp\":1455225122,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#ff1493\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"53078468-fc10-45de-b813-70b70a140b28\",\"name\":\"Create a WordPress Contact Form\",\"slug\":\"create-a-wordpress-contact-form\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/create-a-wordpress-contact-form\",\"sales_count\":43,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, form, email, contact, message, service\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-53078468-fc10-45de-b813-70b70a140b28-368x296-SdwTK.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-53078468-fc10-45de-b813-70b70a140b28-136x136-8dPZY.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-53078468-fc10-45de-b813-70b70a140b28-260x156-u80Dw.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-53078468-fc10-45de-b813-70b70a140b28-1180x660-RIIdX.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 09:52:56\",\"created_timestamp\":1393001576,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#413b3b\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"5681b062-b7b0-484b-bcef-2fd20a141f39\",\"name\":\"Integrate PayPal into my WordPress Site\",\"slug\":\"integrate-paypal-into-my-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/integrate-paypal-into-my-wordpress-site\",\"sales_count\":36,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"PayPal, Business, cart, shop, store, Shopping, pay, checkout\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-368x296-xIU4b.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-136x136-Td9Dz.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5681b062-b7b0-484b-bcef-2fd20a141f39-260x156-GksGf.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5681b062-b7b0-484b-bcef-2fd20a141f39-1180x660-GzdFX.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"99.00\"},\"features\":\"\",\"created\":\"2015-12-28 14:57:54\",\"created_timestamp\":1451339874,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#ff1493\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"530786ea-27b8-4f1b-bc94-46650a141528\",\"name\":\"Add a Google Map to my WordPress Site\",\"slug\":\"add-a-google-map-to-my-wordpress-site\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/add-a-google-map-to-my-wordpress-site\",\"sales_count\":20,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"location, address, map, satellite\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-thumb-mm-resize-136x136-530d15ff8ce36.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530786ea-27b8-4f1b-bc94-46650a141528-square-mm-resize-260x156-530d15d46aaab.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530786ea-27b8-4f1b-bc94-46650a141528-large-mm-resize-1180x660-530d15fecff73.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":\"\",\"created\":\"2014-02-21 10:03:38\",\"created_timestamp\":1393002218,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"55db7979-b07c-484c-a6bd-7d270a141f39\",\"name\":\"WooCommerce Training for Beginners\",\"slug\":\"woocommerce-training-for-beginners\",\"category\":\"all\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/woocommerce-training-for-beginners\",\"sales_count\":5,\"is_service\":\"1\",\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"WordPress, cart, shop, store, sell, woocommerce, video, Shopping, phone, training, record, service\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-368x296-Zm9p2.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-136x136-4jBbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-55db7979-b07c-484c-a6bd-7d270a141f39-260x156-RwaJA.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-55db7979-b07c-484c-a6bd-7d270a141f39-1180x660-0u0J6.png\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"199.00\"},\"features\":\"\",\"created\":\"2015-08-24 14:07:21\",\"created_timestamp\":1440446841,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"#000000\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"594b161a-45a8-4535-a091-62c20a14153b\",\"name\":\"Custom Designed Logo Beautifully Designed Custom Logos\",\"slug\":\"custom-designed-logo\",\"category\":\"design\",\"type\":\"services\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/custom-designed-logo\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":\"RipeConcepts\",\"seller_url\":\"store\\/ripeconcepts-inc\",\"tags\":\"fashion, elegant, company, Business, professional, design, logo, clean, modern, creative\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-594b161a-f91c-44af-94a0-62c20a14153b-AiVNj.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-594b161a-f91c-44af-94a0-62c20a14153b-hMfOG.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-594b161a-f91c-44af-94a0-62c20a14153b-wslmr.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-594b161a-f91c-44af-94a0-62c20a14153b-jmVVx.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"189.00\"},\"features\":[\"2 Rounds of Revisions Included For Free\",\"World-class Design on a Budget\",\"Each Logo Composition is a Unique Design by a Different Artist\"],\"created\":\"2017-06-21 18:58:02\",\"created_timestamp\":1498093082,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"99d226b9c7b8d29719594ec612bff89f\"}],\"page\":\"1\",\"pageCount\":1,\"records\":20}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:13:\"cache-control\";a:1:{i:0;s:3:\"900\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:51 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:10:\"set-cookie\";a:1:{i:0;s:143:\"SESSION=e4ucfqvjjhhup24darb71jgng3; expires=Sat, 05-Aug-2017 03:48:51 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:14:\"content-length\";a:1:{i:0;s:5:\"30070\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:86:\"https://api.mojomarketplace.com/api/v2/items?type=services&count=20&order=sales&page=1\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"e4ucfqvjjhhup24darb71jgng3\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"expires\";i:1501904931;s:7:\"max-age\";i:1501904931;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:6:\"secure\";b:1;s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501544931;s:11:\"last-access\";i:1501544931;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501544931;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"9489ae1e4c34a4cea6d7970e65cd05bf\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";s:1:\"*\";s:13:\"cache-control\";s:3:\"900\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:51 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:10:\"set-cookie\";s:143:\"SESSION=gk5mljan7c2oq7sae7pqojk5t5; expires=Sat, 05-Aug-2017 03:48:51 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:14:\"content-length\";s:5:\"31851\";}}s:4:\"body\";s:31851:\"{\"status\":\"success\",\"items\":[{\"id\":\"5340af5c-15b0-439b-a34e-68940a140b28\",\"name\":\"Oak Tree Logo\",\"slug\":\"oak-tree-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/oak-tree-logo-2\",\"sales_count\":46,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, Business, tree, modern, accounting, lawyer, insurance, oak\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-5340af5c-15b0-439b-a34e-68940a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"RGB color AI and CMYK EPS formats fully editable\",\"Easy to edit, change size, color and text\",\"Logo template suitable for Marketing and Financial\"],\"created\":\"2014-04-05 20:23:46\",\"created_timestamp\":1396751026,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"58a02746-7b54-4721-b58a-3a820a14153b\",\"name\":\"Car Shop Logo\",\"slug\":\"car-shop-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/car-shop-logo\",\"sales_count\":45,\"is_service\":false,\"rating\":0,\"seller_name\":\"GplayOne\",\"seller_url\":\"\",\"tags\":\"shop, mobile, car, automotive, sport, tuning\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-2XZRP.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-6NwXc.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58a02746-7b54-4721-b58a-3a820a14153b-oHYAS.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Editable 100%\",\"AI, EPS, PNG Format\",\"RGB, 300 DPI\"],\"created\":\"2017-02-12 02:14:08\",\"created_timestamp\":1486890848,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2b360c70ed32f191d5253f4ef1a4e940\"},{\"id\":\"5728fe86-4608-4d36-8193-68cd0a141f38\",\"name\":\"Eco Lady Logo\",\"slug\":\"eco-lady-logo-1\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-lady-logo-1\",\"sales_count\":25,\"is_service\":false,\"rating\":0,\"seller_name\":\"maestro99\",\"seller_url\":\"store\\/maestro99\",\"tags\":\"logo, fresh, Business, Vector, Corporate, clinic, medical, health, plant, earth, nature, Green, icon, tree, abstract, healthy, social, media, internet, modern, creative, professional, woman, colorful, brand, web, identity, logos, community, digital, human, eco, natural, symbol, ecology, shape, dummy, Queen, society, lady, herbal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-fcShF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-XbSXF.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5728fe86-4608-4d36-8193-68cd0a141f38-L3EJf.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5728fe86-4608-4d36-8193-68cd0a141f38-ITTKQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Herbal Logo\",\"Nature Logo\",\"Social Logo\"],\"created\":\"2016-05-03 13:40:38\",\"created_timestamp\":1462304438,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5260d9c971437c9a5a033d8fa2b08d0f\"},{\"id\":\"5197a5fc-f998-4242-b7b5-34780a140b1e\",\"name\":\"Badged \",\"slug\":\"badged\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/badged\",\"sales_count\":23,\"is_service\":false,\"rating\":0,\"seller_name\":\"Charlie.N\",\"seller_url\":\"store\\/charlie-n\",\"tags\":\"logo, Business, elegant, modern, professional, card, brand, company, simplistic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged3-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged2-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged4-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged1-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Dark and modern design\",\"Fully layered and organized\",\"Easily editable\"],\"created\":\"2013-05-18 10:29:05\",\"created_timestamp\":1368894545,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d493ef2ef2bc9f6eecf9a4368c482093\"},{\"id\":\"5827d703-5b5c-44a8-b8b7-3d5d0a14153a\",\"name\":\"Aeroglide Letter A Logo\",\"slug\":\"aeroglide-letter-a-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aeroglide-letter-a-logo\",\"sales_count\":15,\"is_service\":false,\"rating\":0,\"seller_name\":\"zixlo\",\"seller_url\":\"store\\/zixlo\",\"tags\":\"Business, travel, abstract, media, arrow, attorney, software, air, letter, education, app, realtor, realty, sport, accounting, law, consulting, aero\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-2WH7k.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-Tsy2W.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-91ak5.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-LRp9g.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"100% Editable &amp; Re-sizable vectors\",\"Texts are fully editable\",\"Format: AI &amp; EPS\"],\"created\":\"2016-11-12 19:59:25\",\"created_timestamp\":1479005965,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"1edcbed6eca100917fc3b34ce8ebccbb\"},{\"id\":\"53441cd6-e980-4681-8db8-1fd30a140b28\",\"name\":\"Majestic Logo\",\"slug\":\"majestic-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/majestic-logo\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, elegant, Retro, hotel, vintage, fashion, ornament, flourish, gold, winery, luxury, classy, Jewelry, resort, style, classic, royal, emblem, crest, majesty, luxurious, royalty, decorative, majestic, heraldic, calligraphy, calligraphic, ornate, heraldry\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53441cd6-e980-4681-8db8-1fd30a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB\",\"Fully Editable\"],\"created\":\"2014-04-08 10:05:46\",\"created_timestamp\":1396973146,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"51e2dc35-d914-46c9-a62f-48af0a140b26\",\"name\":\"Businesscard Pro\",\"slug\":\"businesscard-pro\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-1180x660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Print ready business cards\",\"Double Sided cards\",\"Free fonts and customization\"],\"created\":\"2013-07-14 12:34:56\",\"created_timestamp\":1373826896,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"574137cc-9c88-4d38-aeac-59a80a141f37\",\"name\":\"Eco Tech Logo\",\"slug\":\"eco-tech-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-tech-logo-2\",\"sales_count\":13,\"is_service\":false,\"rating\":5,\"seller_name\":\"meisuseno\",\"seller_url\":\"store\\/meisuseno\",\"tags\":\"logo, plant, nature, Green, leaf, leaves, cool, computer, technology, network, tech, modern, creative, professional, growth, IT, eco, service, natural, creatives, hitech, networking, circuit, computing\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-MtYbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-Fctqy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-574137cc-9c88-4d38-aeac-59a80a141f37-ltVu2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-574137cc-9c88-4d38-aeac-59a80a141f37-kR6sv.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"AI, EPS, PNG Format\",\"Easy editable\",\"CMYK, 300 DPI\"],\"created\":\"2016-05-21 22:39:33\",\"created_timestamp\":1463891973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"acc473f4809e61e9a72cf890a017464a\"},{\"id\":\"56dcf586-6044-40c3-9ba5-312c0a140b32\",\"name\":\"Lighthouse logo\",\"slug\":\"lighthouse-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/lighthouse-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"phuadiesta\",\"seller_url\":\"\",\"tags\":\"simple, logo, Vector, blue, icon, symbol, consulting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-E60Ur.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-CAQEA.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-4WkgR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-VNG3Z.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56dcf586-6044-40c3-9ba5-312c0a140b32-mPaae.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Fully editable\",\"Format AI, EPS &amp; PNG transparent\",\"Resizable vector\"],\"created\":\"2016-03-06 20:31:20\",\"created_timestamp\":1457321480,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3de01ed841b0f15cf895480a056765bc\"},{\"id\":\"5654ad2f-a648-406f-aff0-09310a141f38\",\"name\":\"Valentine Logo\",\"slug\":\"valentine-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/valentine-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"Maraz\",\"seller_url\":\"store\\/black-magic\",\"tags\":\"clean, logo, Business, social, Hearts, heart, modern, charity, Decoration, love, red, art, valentine, beauty, elegance, Pink, foundation, decorative, society, illustrative, organisation, partner, caring, volunteer\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-SNRdw.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-QlzmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-13nWB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-2ry4E.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-jx3rO.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5654ad2f-a648-406f-aff0-09310a141f38-GKDxw.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Editable\",\"Resizable\",\"Easy to edit color \\/ text\"],\"created\":\"2015-11-24 11:32:29\",\"created_timestamp\":1448389949,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"f9a7fc891bffa7e81ffe3547b72dc4e1\"},{\"id\":\"538cbb0a-ec2c-479e-bacc-530e0a140b28\",\"name\":\"Smart Phone Business Card\",\"slug\":\"smart-phone-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/smart-phone-business-card\",\"sales_count\":11,\"is_service\":false,\"rating\":0,\"seller_name\":\"xnorpix\",\"seller_url\":\"\",\"tags\":\"computer, mobile, iphone, android, ios, phone, electronic, smart, smartphone\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-136x136-M5WmW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-260x156-byoEO.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-538cbb0a-ec2c-479e-bacc-530e0a140b28-1180x660-XBmZT.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-06-02 12:24:09\",\"created_timestamp\":1401733449,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c192d3545fbc9feed64ed9d317ee9379\"},{\"id\":\"57307c9d-45d4-42ec-b525-40cd0a141f38\",\"name\":\"Goze Tech\\/G Letter Logo\",\"slug\":\"goze-tech-g-letter-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/goze-tech-g-letter-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"stock6Design\",\"seller_url\":\"store\\/stock6design\",\"tags\":\"clean, simple, logo, Business, circle, travel, store, media, technology, tech, modern, creative, professional, metro, fashion, colorful, bold, brand, software, web, air, character, multicolor, flat, app, logotype, car, automotive, studio, digital, advance, transport, style, Booking, tourism, forum, tour, pixel, strong, wheel, auto, repair, garage, transportation, flight, 2D, alphabet, travels, drive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-4o9Ae.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-WDQob.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57307c9d-45d4-42ec-b525-40cd0a141f38-4Mwom.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57307c9d-45d4-42ec-b525-40cd0a141f38-XYpch.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Non-exclusive logo $49\",\"Exclusive logo $200\",\"Any modification $20\"],\"created\":\"2016-05-09 06:06:13\",\"created_timestamp\":1462795573,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"b5ee5b8fd4da91f8d8821095c8c5fd9e\"},{\"id\":\"5463e951-f0b4-4e8d-a890-3e520a141528\",\"name\":\"Royal Crown Logo\",\"slug\":\"royal-crown-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/royal-crown-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"Flux\",\"seller_url\":\"\",\"tags\":\"clean, elegant, modern, professional, hotel, fashion, ornament, web, smooth, gold, luxury, Jewelry, classic, royal, Queen, tribal, shield, emblem, ornamental, crest, majesty, luxurious, royalty, jewel, decorative, majestic, king, crown, silver, kingdom\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-368x296-szHMr.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-136x136-acsxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-260x156-EpCbI.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5463e951-f0b4-4e8d-a890-3e520a141528-1180x660-J3PsQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-11-12 16:17:43\",\"created_timestamp\":1415834263,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fea6e54423e9e7297fba95ec22c3a0cb\"},{\"id\":\"5255a038-4cc0-44d3-8202-6a080a140b24\",\"name\":\"Businesscard Pro 11\",\"slug\":\"businesscard-pro-11\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro-11\",\"sales_count\":8,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_368-x-296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_1180-x-660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Clean and professional design\",\"Print Ready\"],\"created\":\"2013-10-09 12:32:51\",\"created_timestamp\":1381343571,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"557cadc8-7de0-45c9-9cd4-07e50a141f38\",\"name\":\"Letter C  Abstract Logo\",\"slug\":\"letter-c-abstract-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/letter-c-abstract-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"GoranJovicic\",\"seller_url\":\"store\\/goran-jovicic-logo-place\",\"tags\":\"logo, Business, Vector, Green, abstract, modern, colorful, color, company, letter, work, hexagon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-368x296-GAsQk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-136x136-fkIel.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-260x156-0OJRJ.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-557cadc8-7de0-45c9-9cd4-07e50a141f38-1180x660-dHcgA.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-06-13 17:16:12\",\"created_timestamp\":1434237372,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3d06542e63fb5194b1f391d886ae18da\"},{\"id\":\"530a244a-a16c-407f-aa0d-328c0a141528\",\"name\":\"Poligon Business Card\",\"slug\":\"poligon-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/poligon-business-card\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"RafaelOliveira\",\"seller_url\":\"store\\/rafael-oliveira\",\"tags\":\"simple, Corporate, abstract, thin, modern, creative, professional, card, unique, Stationary, brand, identity, landscape, success, mosaic, portrait, biz, squared, polygon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-Big-mm-resize-368x296-530a27c74831a.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-square-mm-resize-136x136-530a27784fbff.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-thumbnail-mm-resize-260x156-530a279dc1516.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530a244a-a16c-407f-aa0d-328c0a141528-main-mm-resize-1180x660-530a2779d03c5.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"Fully Editable Files\",\"Print ready\"],\"created\":\"2014-02-23 09:54:57\",\"created_timestamp\":1393174497,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5deb8151693d0900697faa6ed61a2e46\"},{\"id\":\"53434db1-aaa8-4c4e-b58c-5b0b0a141528\",\"name\":\"Funky Geek Logo\",\"slug\":\"funky-geek-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/funky-geek-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, fresh, Business, man, intelligent, people, stylish, fashion, brand, identity, boy, stylized, glasses, hair, branding, happy, human, style, fashionable, nerd, geeky, geek, hairstyle, nerdy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53434db1-aaa8-4c4e-b58c-5b0b0a141528-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Tech, Geek logo\",\"CMYK and RGB\",\"Easy to edit \"],\"created\":\"2014-04-07 19:20:17\",\"created_timestamp\":1396920017,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"54f9e256-39e4-4d3c-bfe6-3a490a141528\",\"name\":\"Drone Logo\",\"slug\":\"drone-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/drone-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"ManggaDesign\",\"seller_url\":\"store\\/manggadesign\",\"tags\":\"camera, brand, game, fun, symbol, eye, Shutter, drone\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-368x296-hxxTd.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-136x136-I9Aiy.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-260x156-T7i8a.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54f9e256-39e4-4d3c-bfe6-3a490a141528-1180x660-TNsqI.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-03-06 10:25:09\",\"created_timestamp\":1425662709,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"9905cf77b7f15c0706fb4f8a72585228\"},{\"id\":\"520d14bd-23f0-49f5-96f4-0bc20a140b26\",\"name\":\"Simple and Clean Business Card - Leonard\",\"slug\":\"simple-and-clean-business-card-leonard\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-and-clean-business-card-leonard\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"juraj0611\",\"seller_url\":\"store\\/juraj0611\",\"tags\":\"clean, simple, Business, Corporate, professional\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-520d14bd-23f0-49f5-96f4-0bc20a140b26-view-mm-resize-1180x660.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Accounting\",\"Real Estate\"],\"created\":\"2013-08-15 12:03:22\",\"created_timestamp\":1376589802,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"49daef7037b7f970cb2253198d955391\"},{\"id\":\"519097bd-cc3c-42c2-8c03-64960a140b1e\",\"name\":\"Healthcare logo\",\"slug\":\"healthcare-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/healthcare-logo\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"Comotion\",\"seller_url\":\"\",\"tags\":\"logo, Business\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-LargeThumbnail-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-SquareThumbnail-mm-resize-135x135.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-Thumbnail-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-519097bd-cc3c-42c2-8c03-64960a140b1e-Preview-image-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Great for medical & healthcare sites\",\"Simple & clean look\",\" Fully editable in vector based programs\"],\"created\":\"2013-05-13 03:46:44\",\"created_timestamp\":1368438404,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"afe5b0637a0d37020f47466625d540d2\"}],\"page\":\"1\",\"pageCount\":294,\"records\":5861}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"gk5mljan7c2oq7sae7pqojk5t5\";s:7:\"expires\";i:1501904931;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:31851:\"{\"status\":\"success\",\"items\":[{\"id\":\"5340af5c-15b0-439b-a34e-68940a140b28\",\"name\":\"Oak Tree Logo\",\"slug\":\"oak-tree-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/oak-tree-logo-2\",\"sales_count\":46,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, Business, tree, modern, accounting, lawyer, insurance, oak\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-5340af5c-15b0-439b-a34e-68940a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"RGB color AI and CMYK EPS formats fully editable\",\"Easy to edit, change size, color and text\",\"Logo template suitable for Marketing and Financial\"],\"created\":\"2014-04-05 20:23:46\",\"created_timestamp\":1396751026,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"58a02746-7b54-4721-b58a-3a820a14153b\",\"name\":\"Car Shop Logo\",\"slug\":\"car-shop-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/car-shop-logo\",\"sales_count\":45,\"is_service\":false,\"rating\":0,\"seller_name\":\"GplayOne\",\"seller_url\":\"\",\"tags\":\"shop, mobile, car, automotive, sport, tuning\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-2XZRP.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-6NwXc.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58a02746-7b54-4721-b58a-3a820a14153b-oHYAS.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Editable 100%\",\"AI, EPS, PNG Format\",\"RGB, 300 DPI\"],\"created\":\"2017-02-12 02:14:08\",\"created_timestamp\":1486890848,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2b360c70ed32f191d5253f4ef1a4e940\"},{\"id\":\"5728fe86-4608-4d36-8193-68cd0a141f38\",\"name\":\"Eco Lady Logo\",\"slug\":\"eco-lady-logo-1\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-lady-logo-1\",\"sales_count\":25,\"is_service\":false,\"rating\":0,\"seller_name\":\"maestro99\",\"seller_url\":\"store\\/maestro99\",\"tags\":\"logo, fresh, Business, Vector, Corporate, clinic, medical, health, plant, earth, nature, Green, icon, tree, abstract, healthy, social, media, internet, modern, creative, professional, woman, colorful, brand, web, identity, logos, community, digital, human, eco, natural, symbol, ecology, shape, dummy, Queen, society, lady, herbal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-fcShF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-XbSXF.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5728fe86-4608-4d36-8193-68cd0a141f38-L3EJf.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5728fe86-4608-4d36-8193-68cd0a141f38-ITTKQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Herbal Logo\",\"Nature Logo\",\"Social Logo\"],\"created\":\"2016-05-03 13:40:38\",\"created_timestamp\":1462304438,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5260d9c971437c9a5a033d8fa2b08d0f\"},{\"id\":\"5197a5fc-f998-4242-b7b5-34780a140b1e\",\"name\":\"Badged \",\"slug\":\"badged\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/badged\",\"sales_count\":23,\"is_service\":false,\"rating\":0,\"seller_name\":\"Charlie.N\",\"seller_url\":\"store\\/charlie-n\",\"tags\":\"logo, Business, elegant, modern, professional, card, brand, company, simplistic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged3-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged2-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged4-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged1-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Dark and modern design\",\"Fully layered and organized\",\"Easily editable\"],\"created\":\"2013-05-18 10:29:05\",\"created_timestamp\":1368894545,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d493ef2ef2bc9f6eecf9a4368c482093\"},{\"id\":\"5827d703-5b5c-44a8-b8b7-3d5d0a14153a\",\"name\":\"Aeroglide Letter A Logo\",\"slug\":\"aeroglide-letter-a-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aeroglide-letter-a-logo\",\"sales_count\":15,\"is_service\":false,\"rating\":0,\"seller_name\":\"zixlo\",\"seller_url\":\"store\\/zixlo\",\"tags\":\"Business, travel, abstract, media, arrow, attorney, software, air, letter, education, app, realtor, realty, sport, accounting, law, consulting, aero\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-2WH7k.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-Tsy2W.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-91ak5.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-LRp9g.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"100% Editable &amp; Re-sizable vectors\",\"Texts are fully editable\",\"Format: AI &amp; EPS\"],\"created\":\"2016-11-12 19:59:25\",\"created_timestamp\":1479005965,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"1edcbed6eca100917fc3b34ce8ebccbb\"},{\"id\":\"53441cd6-e980-4681-8db8-1fd30a140b28\",\"name\":\"Majestic Logo\",\"slug\":\"majestic-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/majestic-logo\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, elegant, Retro, hotel, vintage, fashion, ornament, flourish, gold, winery, luxury, classy, Jewelry, resort, style, classic, royal, emblem, crest, majesty, luxurious, royalty, decorative, majestic, heraldic, calligraphy, calligraphic, ornate, heraldry\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53441cd6-e980-4681-8db8-1fd30a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB\",\"Fully Editable\"],\"created\":\"2014-04-08 10:05:46\",\"created_timestamp\":1396973146,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"51e2dc35-d914-46c9-a62f-48af0a140b26\",\"name\":\"Businesscard Pro\",\"slug\":\"businesscard-pro\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-1180x660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Print ready business cards\",\"Double Sided cards\",\"Free fonts and customization\"],\"created\":\"2013-07-14 12:34:56\",\"created_timestamp\":1373826896,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"574137cc-9c88-4d38-aeac-59a80a141f37\",\"name\":\"Eco Tech Logo\",\"slug\":\"eco-tech-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-tech-logo-2\",\"sales_count\":13,\"is_service\":false,\"rating\":5,\"seller_name\":\"meisuseno\",\"seller_url\":\"store\\/meisuseno\",\"tags\":\"logo, plant, nature, Green, leaf, leaves, cool, computer, technology, network, tech, modern, creative, professional, growth, IT, eco, service, natural, creatives, hitech, networking, circuit, computing\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-MtYbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-Fctqy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-574137cc-9c88-4d38-aeac-59a80a141f37-ltVu2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-574137cc-9c88-4d38-aeac-59a80a141f37-kR6sv.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"AI, EPS, PNG Format\",\"Easy editable\",\"CMYK, 300 DPI\"],\"created\":\"2016-05-21 22:39:33\",\"created_timestamp\":1463891973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"acc473f4809e61e9a72cf890a017464a\"},{\"id\":\"56dcf586-6044-40c3-9ba5-312c0a140b32\",\"name\":\"Lighthouse logo\",\"slug\":\"lighthouse-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/lighthouse-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"phuadiesta\",\"seller_url\":\"\",\"tags\":\"simple, logo, Vector, blue, icon, symbol, consulting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-E60Ur.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-CAQEA.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-4WkgR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-VNG3Z.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56dcf586-6044-40c3-9ba5-312c0a140b32-mPaae.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Fully editable\",\"Format AI, EPS &amp; PNG transparent\",\"Resizable vector\"],\"created\":\"2016-03-06 20:31:20\",\"created_timestamp\":1457321480,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3de01ed841b0f15cf895480a056765bc\"},{\"id\":\"5654ad2f-a648-406f-aff0-09310a141f38\",\"name\":\"Valentine Logo\",\"slug\":\"valentine-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/valentine-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"Maraz\",\"seller_url\":\"store\\/black-magic\",\"tags\":\"clean, logo, Business, social, Hearts, heart, modern, charity, Decoration, love, red, art, valentine, beauty, elegance, Pink, foundation, decorative, society, illustrative, organisation, partner, caring, volunteer\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-SNRdw.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-QlzmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-13nWB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-2ry4E.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-jx3rO.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5654ad2f-a648-406f-aff0-09310a141f38-GKDxw.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Editable\",\"Resizable\",\"Easy to edit color \\/ text\"],\"created\":\"2015-11-24 11:32:29\",\"created_timestamp\":1448389949,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"f9a7fc891bffa7e81ffe3547b72dc4e1\"},{\"id\":\"538cbb0a-ec2c-479e-bacc-530e0a140b28\",\"name\":\"Smart Phone Business Card\",\"slug\":\"smart-phone-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/smart-phone-business-card\",\"sales_count\":11,\"is_service\":false,\"rating\":0,\"seller_name\":\"xnorpix\",\"seller_url\":\"\",\"tags\":\"computer, mobile, iphone, android, ios, phone, electronic, smart, smartphone\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-136x136-M5WmW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-260x156-byoEO.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-538cbb0a-ec2c-479e-bacc-530e0a140b28-1180x660-XBmZT.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-06-02 12:24:09\",\"created_timestamp\":1401733449,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c192d3545fbc9feed64ed9d317ee9379\"},{\"id\":\"57307c9d-45d4-42ec-b525-40cd0a141f38\",\"name\":\"Goze Tech\\/G Letter Logo\",\"slug\":\"goze-tech-g-letter-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/goze-tech-g-letter-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"stock6Design\",\"seller_url\":\"store\\/stock6design\",\"tags\":\"clean, simple, logo, Business, circle, travel, store, media, technology, tech, modern, creative, professional, metro, fashion, colorful, bold, brand, software, web, air, character, multicolor, flat, app, logotype, car, automotive, studio, digital, advance, transport, style, Booking, tourism, forum, tour, pixel, strong, wheel, auto, repair, garage, transportation, flight, 2D, alphabet, travels, drive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-4o9Ae.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-WDQob.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57307c9d-45d4-42ec-b525-40cd0a141f38-4Mwom.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57307c9d-45d4-42ec-b525-40cd0a141f38-XYpch.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Non-exclusive logo $49\",\"Exclusive logo $200\",\"Any modification $20\"],\"created\":\"2016-05-09 06:06:13\",\"created_timestamp\":1462795573,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"b5ee5b8fd4da91f8d8821095c8c5fd9e\"},{\"id\":\"5463e951-f0b4-4e8d-a890-3e520a141528\",\"name\":\"Royal Crown Logo\",\"slug\":\"royal-crown-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/royal-crown-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"Flux\",\"seller_url\":\"\",\"tags\":\"clean, elegant, modern, professional, hotel, fashion, ornament, web, smooth, gold, luxury, Jewelry, classic, royal, Queen, tribal, shield, emblem, ornamental, crest, majesty, luxurious, royalty, jewel, decorative, majestic, king, crown, silver, kingdom\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-368x296-szHMr.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-136x136-acsxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-260x156-EpCbI.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5463e951-f0b4-4e8d-a890-3e520a141528-1180x660-J3PsQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-11-12 16:17:43\",\"created_timestamp\":1415834263,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fea6e54423e9e7297fba95ec22c3a0cb\"},{\"id\":\"5255a038-4cc0-44d3-8202-6a080a140b24\",\"name\":\"Businesscard Pro 11\",\"slug\":\"businesscard-pro-11\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro-11\",\"sales_count\":8,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_368-x-296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_1180-x-660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Clean and professional design\",\"Print Ready\"],\"created\":\"2013-10-09 12:32:51\",\"created_timestamp\":1381343571,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"557cadc8-7de0-45c9-9cd4-07e50a141f38\",\"name\":\"Letter C  Abstract Logo\",\"slug\":\"letter-c-abstract-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/letter-c-abstract-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"GoranJovicic\",\"seller_url\":\"store\\/goran-jovicic-logo-place\",\"tags\":\"logo, Business, Vector, Green, abstract, modern, colorful, color, company, letter, work, hexagon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-368x296-GAsQk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-136x136-fkIel.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-260x156-0OJRJ.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-557cadc8-7de0-45c9-9cd4-07e50a141f38-1180x660-dHcgA.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-06-13 17:16:12\",\"created_timestamp\":1434237372,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3d06542e63fb5194b1f391d886ae18da\"},{\"id\":\"530a244a-a16c-407f-aa0d-328c0a141528\",\"name\":\"Poligon Business Card\",\"slug\":\"poligon-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/poligon-business-card\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"RafaelOliveira\",\"seller_url\":\"store\\/rafael-oliveira\",\"tags\":\"simple, Corporate, abstract, thin, modern, creative, professional, card, unique, Stationary, brand, identity, landscape, success, mosaic, portrait, biz, squared, polygon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-Big-mm-resize-368x296-530a27c74831a.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-square-mm-resize-136x136-530a27784fbff.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-thumbnail-mm-resize-260x156-530a279dc1516.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530a244a-a16c-407f-aa0d-328c0a141528-main-mm-resize-1180x660-530a2779d03c5.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"Fully Editable Files\",\"Print ready\"],\"created\":\"2014-02-23 09:54:57\",\"created_timestamp\":1393174497,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5deb8151693d0900697faa6ed61a2e46\"},{\"id\":\"53434db1-aaa8-4c4e-b58c-5b0b0a141528\",\"name\":\"Funky Geek Logo\",\"slug\":\"funky-geek-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/funky-geek-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, fresh, Business, man, intelligent, people, stylish, fashion, brand, identity, boy, stylized, glasses, hair, branding, happy, human, style, fashionable, nerd, geeky, geek, hairstyle, nerdy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53434db1-aaa8-4c4e-b58c-5b0b0a141528-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Tech, Geek logo\",\"CMYK and RGB\",\"Easy to edit \"],\"created\":\"2014-04-07 19:20:17\",\"created_timestamp\":1396920017,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"54f9e256-39e4-4d3c-bfe6-3a490a141528\",\"name\":\"Drone Logo\",\"slug\":\"drone-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/drone-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"ManggaDesign\",\"seller_url\":\"store\\/manggadesign\",\"tags\":\"camera, brand, game, fun, symbol, eye, Shutter, drone\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-368x296-hxxTd.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-136x136-I9Aiy.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-260x156-T7i8a.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54f9e256-39e4-4d3c-bfe6-3a490a141528-1180x660-TNsqI.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-03-06 10:25:09\",\"created_timestamp\":1425662709,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"9905cf77b7f15c0706fb4f8a72585228\"},{\"id\":\"520d14bd-23f0-49f5-96f4-0bc20a140b26\",\"name\":\"Simple and Clean Business Card - Leonard\",\"slug\":\"simple-and-clean-business-card-leonard\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-and-clean-business-card-leonard\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"juraj0611\",\"seller_url\":\"store\\/juraj0611\",\"tags\":\"clean, simple, Business, Corporate, professional\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-520d14bd-23f0-49f5-96f4-0bc20a140b26-view-mm-resize-1180x660.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Accounting\",\"Real Estate\"],\"created\":\"2013-08-15 12:03:22\",\"created_timestamp\":1376589802,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"49daef7037b7f970cb2253198d955391\"},{\"id\":\"519097bd-cc3c-42c2-8c03-64960a140b1e\",\"name\":\"Healthcare logo\",\"slug\":\"healthcare-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/healthcare-logo\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"Comotion\",\"seller_url\":\"\",\"tags\":\"logo, Business\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-LargeThumbnail-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-SquareThumbnail-mm-resize-135x135.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-Thumbnail-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-519097bd-cc3c-42c2-8c03-64960a140b1e-Preview-image-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Great for medical & healthcare sites\",\"Simple & clean look\",\" Fully editable in vector based programs\"],\"created\":\"2013-05-13 03:46:44\",\"created_timestamp\":1368438404,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"afe5b0637a0d37020f47466625d540d2\"}],\"page\":\"1\",\"pageCount\":294,\"records\":5861}\";s:3:\"raw\";s:32253:\"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nCache-Control: 900\r\nContent-Type: application/json; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:48:51 GMT\r\nServer: nginx/1.10.1\r\nSet-Cookie: SESSION=gk5mljan7c2oq7sae7pqojk5t5; expires=Sat, 05-Aug-2017 03:48:51 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\r\nX-Powered-By: PHP/5.6.22\r\nContent-Length: 31851\r\nConnection: Close\r\n\r\n{\"status\":\"success\",\"items\":[{\"id\":\"5340af5c-15b0-439b-a34e-68940a140b28\",\"name\":\"Oak Tree Logo\",\"slug\":\"oak-tree-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/oak-tree-logo-2\",\"sales_count\":46,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, Business, tree, modern, accounting, lawyer, insurance, oak\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-5340af5c-15b0-439b-a34e-68940a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"RGB color AI and CMYK EPS formats fully editable\",\"Easy to edit, change size, color and text\",\"Logo template suitable for Marketing and Financial\"],\"created\":\"2014-04-05 20:23:46\",\"created_timestamp\":1396751026,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"58a02746-7b54-4721-b58a-3a820a14153b\",\"name\":\"Car Shop Logo\",\"slug\":\"car-shop-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/car-shop-logo\",\"sales_count\":45,\"is_service\":false,\"rating\":0,\"seller_name\":\"GplayOne\",\"seller_url\":\"\",\"tags\":\"shop, mobile, car, automotive, sport, tuning\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-2XZRP.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-6NwXc.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58a02746-7b54-4721-b58a-3a820a14153b-oHYAS.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Editable 100%\",\"AI, EPS, PNG Format\",\"RGB, 300 DPI\"],\"created\":\"2017-02-12 02:14:08\",\"created_timestamp\":1486890848,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2b360c70ed32f191d5253f4ef1a4e940\"},{\"id\":\"5728fe86-4608-4d36-8193-68cd0a141f38\",\"name\":\"Eco Lady Logo\",\"slug\":\"eco-lady-logo-1\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-lady-logo-1\",\"sales_count\":25,\"is_service\":false,\"rating\":0,\"seller_name\":\"maestro99\",\"seller_url\":\"store\\/maestro99\",\"tags\":\"logo, fresh, Business, Vector, Corporate, clinic, medical, health, plant, earth, nature, Green, icon, tree, abstract, healthy, social, media, internet, modern, creative, professional, woman, colorful, brand, web, identity, logos, community, digital, human, eco, natural, symbol, ecology, shape, dummy, Queen, society, lady, herbal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-fcShF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-XbSXF.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5728fe86-4608-4d36-8193-68cd0a141f38-L3EJf.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5728fe86-4608-4d36-8193-68cd0a141f38-ITTKQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Herbal Logo\",\"Nature Logo\",\"Social Logo\"],\"created\":\"2016-05-03 13:40:38\",\"created_timestamp\":1462304438,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5260d9c971437c9a5a033d8fa2b08d0f\"},{\"id\":\"5197a5fc-f998-4242-b7b5-34780a140b1e\",\"name\":\"Badged \",\"slug\":\"badged\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/badged\",\"sales_count\":23,\"is_service\":false,\"rating\":0,\"seller_name\":\"Charlie.N\",\"seller_url\":\"store\\/charlie-n\",\"tags\":\"logo, Business, elegant, modern, professional, card, brand, company, simplistic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged3-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged2-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged4-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged1-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Dark and modern design\",\"Fully layered and organized\",\"Easily editable\"],\"created\":\"2013-05-18 10:29:05\",\"created_timestamp\":1368894545,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d493ef2ef2bc9f6eecf9a4368c482093\"},{\"id\":\"5827d703-5b5c-44a8-b8b7-3d5d0a14153a\",\"name\":\"Aeroglide Letter A Logo\",\"slug\":\"aeroglide-letter-a-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aeroglide-letter-a-logo\",\"sales_count\":15,\"is_service\":false,\"rating\":0,\"seller_name\":\"zixlo\",\"seller_url\":\"store\\/zixlo\",\"tags\":\"Business, travel, abstract, media, arrow, attorney, software, air, letter, education, app, realtor, realty, sport, accounting, law, consulting, aero\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-2WH7k.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-Tsy2W.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-91ak5.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-LRp9g.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"100% Editable &amp; Re-sizable vectors\",\"Texts are fully editable\",\"Format: AI &amp; EPS\"],\"created\":\"2016-11-12 19:59:25\",\"created_timestamp\":1479005965,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"1edcbed6eca100917fc3b34ce8ebccbb\"},{\"id\":\"53441cd6-e980-4681-8db8-1fd30a140b28\",\"name\":\"Majestic Logo\",\"slug\":\"majestic-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/majestic-logo\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, elegant, Retro, hotel, vintage, fashion, ornament, flourish, gold, winery, luxury, classy, Jewelry, resort, style, classic, royal, emblem, crest, majesty, luxurious, royalty, decorative, majestic, heraldic, calligraphy, calligraphic, ornate, heraldry\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53441cd6-e980-4681-8db8-1fd30a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB\",\"Fully Editable\"],\"created\":\"2014-04-08 10:05:46\",\"created_timestamp\":1396973146,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"51e2dc35-d914-46c9-a62f-48af0a140b26\",\"name\":\"Businesscard Pro\",\"slug\":\"businesscard-pro\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-1180x660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Print ready business cards\",\"Double Sided cards\",\"Free fonts and customization\"],\"created\":\"2013-07-14 12:34:56\",\"created_timestamp\":1373826896,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"574137cc-9c88-4d38-aeac-59a80a141f37\",\"name\":\"Eco Tech Logo\",\"slug\":\"eco-tech-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-tech-logo-2\",\"sales_count\":13,\"is_service\":false,\"rating\":5,\"seller_name\":\"meisuseno\",\"seller_url\":\"store\\/meisuseno\",\"tags\":\"logo, plant, nature, Green, leaf, leaves, cool, computer, technology, network, tech, modern, creative, professional, growth, IT, eco, service, natural, creatives, hitech, networking, circuit, computing\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-MtYbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-Fctqy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-574137cc-9c88-4d38-aeac-59a80a141f37-ltVu2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-574137cc-9c88-4d38-aeac-59a80a141f37-kR6sv.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"AI, EPS, PNG Format\",\"Easy editable\",\"CMYK, 300 DPI\"],\"created\":\"2016-05-21 22:39:33\",\"created_timestamp\":1463891973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"acc473f4809e61e9a72cf890a017464a\"},{\"id\":\"56dcf586-6044-40c3-9ba5-312c0a140b32\",\"name\":\"Lighthouse logo\",\"slug\":\"lighthouse-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/lighthouse-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"phuadiesta\",\"seller_url\":\"\",\"tags\":\"simple, logo, Vector, blue, icon, symbol, consulting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-E60Ur.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-CAQEA.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-4WkgR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-VNG3Z.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56dcf586-6044-40c3-9ba5-312c0a140b32-mPaae.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Fully editable\",\"Format AI, EPS &amp; PNG transparent\",\"Resizable vector\"],\"created\":\"2016-03-06 20:31:20\",\"created_timestamp\":1457321480,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3de01ed841b0f15cf895480a056765bc\"},{\"id\":\"5654ad2f-a648-406f-aff0-09310a141f38\",\"name\":\"Valentine Logo\",\"slug\":\"valentine-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/valentine-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"Maraz\",\"seller_url\":\"store\\/black-magic\",\"tags\":\"clean, logo, Business, social, Hearts, heart, modern, charity, Decoration, love, red, art, valentine, beauty, elegance, Pink, foundation, decorative, society, illustrative, organisation, partner, caring, volunteer\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-SNRdw.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-QlzmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-13nWB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-2ry4E.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-jx3rO.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5654ad2f-a648-406f-aff0-09310a141f38-GKDxw.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Editable\",\"Resizable\",\"Easy to edit color \\/ text\"],\"created\":\"2015-11-24 11:32:29\",\"created_timestamp\":1448389949,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"f9a7fc891bffa7e81ffe3547b72dc4e1\"},{\"id\":\"538cbb0a-ec2c-479e-bacc-530e0a140b28\",\"name\":\"Smart Phone Business Card\",\"slug\":\"smart-phone-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/smart-phone-business-card\",\"sales_count\":11,\"is_service\":false,\"rating\":0,\"seller_name\":\"xnorpix\",\"seller_url\":\"\",\"tags\":\"computer, mobile, iphone, android, ios, phone, electronic, smart, smartphone\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-136x136-M5WmW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-260x156-byoEO.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-538cbb0a-ec2c-479e-bacc-530e0a140b28-1180x660-XBmZT.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-06-02 12:24:09\",\"created_timestamp\":1401733449,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c192d3545fbc9feed64ed9d317ee9379\"},{\"id\":\"57307c9d-45d4-42ec-b525-40cd0a141f38\",\"name\":\"Goze Tech\\/G Letter Logo\",\"slug\":\"goze-tech-g-letter-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/goze-tech-g-letter-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"stock6Design\",\"seller_url\":\"store\\/stock6design\",\"tags\":\"clean, simple, logo, Business, circle, travel, store, media, technology, tech, modern, creative, professional, metro, fashion, colorful, bold, brand, software, web, air, character, multicolor, flat, app, logotype, car, automotive, studio, digital, advance, transport, style, Booking, tourism, forum, tour, pixel, strong, wheel, auto, repair, garage, transportation, flight, 2D, alphabet, travels, drive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-4o9Ae.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-WDQob.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57307c9d-45d4-42ec-b525-40cd0a141f38-4Mwom.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57307c9d-45d4-42ec-b525-40cd0a141f38-XYpch.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Non-exclusive logo $49\",\"Exclusive logo $200\",\"Any modification $20\"],\"created\":\"2016-05-09 06:06:13\",\"created_timestamp\":1462795573,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"b5ee5b8fd4da91f8d8821095c8c5fd9e\"},{\"id\":\"5463e951-f0b4-4e8d-a890-3e520a141528\",\"name\":\"Royal Crown Logo\",\"slug\":\"royal-crown-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/royal-crown-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"Flux\",\"seller_url\":\"\",\"tags\":\"clean, elegant, modern, professional, hotel, fashion, ornament, web, smooth, gold, luxury, Jewelry, classic, royal, Queen, tribal, shield, emblem, ornamental, crest, majesty, luxurious, royalty, jewel, decorative, majestic, king, crown, silver, kingdom\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-368x296-szHMr.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-136x136-acsxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-260x156-EpCbI.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5463e951-f0b4-4e8d-a890-3e520a141528-1180x660-J3PsQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-11-12 16:17:43\",\"created_timestamp\":1415834263,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fea6e54423e9e7297fba95ec22c3a0cb\"},{\"id\":\"5255a038-4cc0-44d3-8202-6a080a140b24\",\"name\":\"Businesscard Pro 11\",\"slug\":\"businesscard-pro-11\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro-11\",\"sales_count\":8,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_368-x-296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_1180-x-660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Clean and professional design\",\"Print Ready\"],\"created\":\"2013-10-09 12:32:51\",\"created_timestamp\":1381343571,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"557cadc8-7de0-45c9-9cd4-07e50a141f38\",\"name\":\"Letter C  Abstract Logo\",\"slug\":\"letter-c-abstract-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/letter-c-abstract-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"GoranJovicic\",\"seller_url\":\"store\\/goran-jovicic-logo-place\",\"tags\":\"logo, Business, Vector, Green, abstract, modern, colorful, color, company, letter, work, hexagon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-368x296-GAsQk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-136x136-fkIel.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-260x156-0OJRJ.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-557cadc8-7de0-45c9-9cd4-07e50a141f38-1180x660-dHcgA.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-06-13 17:16:12\",\"created_timestamp\":1434237372,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3d06542e63fb5194b1f391d886ae18da\"},{\"id\":\"530a244a-a16c-407f-aa0d-328c0a141528\",\"name\":\"Poligon Business Card\",\"slug\":\"poligon-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/poligon-business-card\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"RafaelOliveira\",\"seller_url\":\"store\\/rafael-oliveira\",\"tags\":\"simple, Corporate, abstract, thin, modern, creative, professional, card, unique, Stationary, brand, identity, landscape, success, mosaic, portrait, biz, squared, polygon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-Big-mm-resize-368x296-530a27c74831a.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-square-mm-resize-136x136-530a27784fbff.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-thumbnail-mm-resize-260x156-530a279dc1516.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530a244a-a16c-407f-aa0d-328c0a141528-main-mm-resize-1180x660-530a2779d03c5.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"Fully Editable Files\",\"Print ready\"],\"created\":\"2014-02-23 09:54:57\",\"created_timestamp\":1393174497,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5deb8151693d0900697faa6ed61a2e46\"},{\"id\":\"53434db1-aaa8-4c4e-b58c-5b0b0a141528\",\"name\":\"Funky Geek Logo\",\"slug\":\"funky-geek-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/funky-geek-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, fresh, Business, man, intelligent, people, stylish, fashion, brand, identity, boy, stylized, glasses, hair, branding, happy, human, style, fashionable, nerd, geeky, geek, hairstyle, nerdy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53434db1-aaa8-4c4e-b58c-5b0b0a141528-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Tech, Geek logo\",\"CMYK and RGB\",\"Easy to edit \"],\"created\":\"2014-04-07 19:20:17\",\"created_timestamp\":1396920017,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"54f9e256-39e4-4d3c-bfe6-3a490a141528\",\"name\":\"Drone Logo\",\"slug\":\"drone-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/drone-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"ManggaDesign\",\"seller_url\":\"store\\/manggadesign\",\"tags\":\"camera, brand, game, fun, symbol, eye, Shutter, drone\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-368x296-hxxTd.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-136x136-I9Aiy.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-260x156-T7i8a.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54f9e256-39e4-4d3c-bfe6-3a490a141528-1180x660-TNsqI.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-03-06 10:25:09\",\"created_timestamp\":1425662709,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"9905cf77b7f15c0706fb4f8a72585228\"},{\"id\":\"520d14bd-23f0-49f5-96f4-0bc20a140b26\",\"name\":\"Simple and Clean Business Card - Leonard\",\"slug\":\"simple-and-clean-business-card-leonard\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-and-clean-business-card-leonard\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"juraj0611\",\"seller_url\":\"store\\/juraj0611\",\"tags\":\"clean, simple, Business, Corporate, professional\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-520d14bd-23f0-49f5-96f4-0bc20a140b26-view-mm-resize-1180x660.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Accounting\",\"Real Estate\"],\"created\":\"2013-08-15 12:03:22\",\"created_timestamp\":1376589802,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"49daef7037b7f970cb2253198d955391\"},{\"id\":\"519097bd-cc3c-42c2-8c03-64960a140b1e\",\"name\":\"Healthcare logo\",\"slug\":\"healthcare-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/healthcare-logo\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"Comotion\",\"seller_url\":\"\",\"tags\":\"logo, Business\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-LargeThumbnail-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-SquareThumbnail-mm-resize-135x135.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-Thumbnail-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-519097bd-cc3c-42c2-8c03-64960a140b1e-Preview-image-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Great for medical & healthcare sites\",\"Simple & clean look\",\" Fully editable in vector based programs\"],\"created\":\"2013-05-13 03:46:44\",\"created_timestamp\":1368438404,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"afe5b0637a0d37020f47466625d540d2\"}],\"page\":\"1\",\"pageCount\":294,\"records\":5861}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:13:\"cache-control\";a:1:{i:0;s:3:\"900\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:51 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:10:\"set-cookie\";a:1:{i:0;s:143:\"SESSION=gk5mljan7c2oq7sae7pqojk5t5; expires=Sat, 05-Aug-2017 03:48:51 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:14:\"content-length\";a:1:{i:0;s:5:\"31851\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:86:\"https://api.mojomarketplace.com/api/v2/items?type=graphics&count=20&order=sales&page=1\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"gk5mljan7c2oq7sae7pqojk5t5\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"expires\";i:1501904931;s:7:\"max-age\";i:1501904931;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:6:\"secure\";b:1;s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501544931;s:11:\"last-access\";i:1501544931;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501544931;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"3437ab8b1d1215a1ad677903d8c2497c\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";s:1:\"*\";s:13:\"cache-control\";s:3:\"900\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:52 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:10:\"set-cookie\";s:143:\"SESSION=hgndfri1djg9c4nf7v6609j4c0; expires=Sat, 05-Aug-2017 03:48:52 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:14:\"content-length\";s:4:\"5360\";}}s:4:\"body\";s:5360:\"{\"status\":\"success\",\"items\":[{\"id\":\"03e3b083-fdcb-11e5-a93f-080027a88f86\",\"name\":\"Bing Ads\",\"slug\":\"bing-ads\",\"category\":\"marketing\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bing-ads\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/03e3b083-fdcb-11e5-a93f-080027a88f86-bing-thumb-183x118.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/03e3b083-fdcb-11e5-a93f-080027a88f86-Bing-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-04-08 14:46:49\",\"created_timestamp\":1460148409,\"demo_url\":\"\",\"short_description\":\"Reach your best customers and boost sales with $100 in free advertising from Bing Ads.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"8c9d1106-9151-4807-810d-9290b77b0baa\",\"name\":\"Post Creator\",\"slug\":\"post-creator\",\"category\":\"all\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/post-creator\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/8c9d1106-9151-4807-810d-9290b77b0baa-postCreator-thumb.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/8c9d1106-9151-4807-810d-9290b77b0baa-PostCreator-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-05-24 16:52:03\",\"created_timestamp\":1464130323,\"demo_url\":\"\",\"short_description\":\"PostCreator enables you to upload images, insert messages and add a logo to make more engaging branded content. And you don\\u2019t need to be a design pro to use it.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"cd7a05bf-28d8-11e6-bdaa-02cc4695eddb\",\"name\":\"Bank of America\",\"slug\":\"bank-of-america\",\"category\":\"financial\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bank-of-america\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-assets-production\\/items\\/bankofAmerica_thumbnail.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/cd7a05bf-28d8-11e6-bdaa-02cc4695eddb-BankOfAmerica-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-06-14 21:39:10\",\"created_timestamp\":1465961950,\"demo_url\":\"\",\"short_description\":\"Customized small business banking solutions to improve your cash flow and streamline your business.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"e7629983-2c2f-11e6-b294-525400d3eba4\",\"name\":\"Social Suite\",\"slug\":\"social-suite\",\"category\":\"marketing\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/social-suite\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-square_thumbnail.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-SocialSuite-thumb.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-preview.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"7.70\"},\"features\":\"\",\"created\":\"2016-06-28 20:33:35\",\"created_timestamp\":1467167615,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"fd32f0d5-fdca-11e5-a93f-080027a88f86\",\"name\":\"Kabbage \",\"slug\":\"kabbage\",\"category\":\"financial\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/kabbage\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/fc7e7771-fdca-11e5-a93f-080027a88f86-Kabbage-thumb-183x118.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/fd32f0d5-fdca-11e5-a93f-080027a88f86-Kabbage-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-04-08 14:46:37\",\"created_timestamp\":1460148397,\"demo_url\":\"\",\"short_description\":\"Get the security of a business line of credit today. Qualify for a line up to $100,000 in minutes. No cost or obligation to draw funds. Take only what you need, when you need it. Pay only for what you take. Access your cash 24\\/7.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"}],\"page\":\"1\",\"pageCount\":1,\"records\":5}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"hgndfri1djg9c4nf7v6609j4c0\";s:7:\"expires\";i:1501904932;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:5360:\"{\"status\":\"success\",\"items\":[{\"id\":\"03e3b083-fdcb-11e5-a93f-080027a88f86\",\"name\":\"Bing Ads\",\"slug\":\"bing-ads\",\"category\":\"marketing\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bing-ads\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/03e3b083-fdcb-11e5-a93f-080027a88f86-bing-thumb-183x118.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/03e3b083-fdcb-11e5-a93f-080027a88f86-Bing-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-04-08 14:46:49\",\"created_timestamp\":1460148409,\"demo_url\":\"\",\"short_description\":\"Reach your best customers and boost sales with $100 in free advertising from Bing Ads.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"8c9d1106-9151-4807-810d-9290b77b0baa\",\"name\":\"Post Creator\",\"slug\":\"post-creator\",\"category\":\"all\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/post-creator\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/8c9d1106-9151-4807-810d-9290b77b0baa-postCreator-thumb.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/8c9d1106-9151-4807-810d-9290b77b0baa-PostCreator-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-05-24 16:52:03\",\"created_timestamp\":1464130323,\"demo_url\":\"\",\"short_description\":\"PostCreator enables you to upload images, insert messages and add a logo to make more engaging branded content. And you don\\u2019t need to be a design pro to use it.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"cd7a05bf-28d8-11e6-bdaa-02cc4695eddb\",\"name\":\"Bank of America\",\"slug\":\"bank-of-america\",\"category\":\"financial\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bank-of-america\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-assets-production\\/items\\/bankofAmerica_thumbnail.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/cd7a05bf-28d8-11e6-bdaa-02cc4695eddb-BankOfAmerica-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-06-14 21:39:10\",\"created_timestamp\":1465961950,\"demo_url\":\"\",\"short_description\":\"Customized small business banking solutions to improve your cash flow and streamline your business.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"e7629983-2c2f-11e6-b294-525400d3eba4\",\"name\":\"Social Suite\",\"slug\":\"social-suite\",\"category\":\"marketing\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/social-suite\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-square_thumbnail.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-SocialSuite-thumb.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-preview.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"7.70\"},\"features\":\"\",\"created\":\"2016-06-28 20:33:35\",\"created_timestamp\":1467167615,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"fd32f0d5-fdca-11e5-a93f-080027a88f86\",\"name\":\"Kabbage \",\"slug\":\"kabbage\",\"category\":\"financial\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/kabbage\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/fc7e7771-fdca-11e5-a93f-080027a88f86-Kabbage-thumb-183x118.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/fd32f0d5-fdca-11e5-a93f-080027a88f86-Kabbage-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-04-08 14:46:37\",\"created_timestamp\":1460148397,\"demo_url\":\"\",\"short_description\":\"Get the security of a business line of credit today. Qualify for a line up to $100,000 in minutes. No cost or obligation to draw funds. Take only what you need, when you need it. Pay only for what you take. Access your cash 24\\/7.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"}],\"page\":\"1\",\"pageCount\":1,\"records\":5}\";s:3:\"raw\";s:5761:\"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nCache-Control: 900\r\nContent-Type: application/json; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:48:52 GMT\r\nServer: nginx/1.10.1\r\nSet-Cookie: SESSION=hgndfri1djg9c4nf7v6609j4c0; expires=Sat, 05-Aug-2017 03:48:52 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\r\nX-Powered-By: PHP/5.6.22\r\nContent-Length: 5360\r\nConnection: Close\r\n\r\n{\"status\":\"success\",\"items\":[{\"id\":\"03e3b083-fdcb-11e5-a93f-080027a88f86\",\"name\":\"Bing Ads\",\"slug\":\"bing-ads\",\"category\":\"marketing\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bing-ads\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/03e3b083-fdcb-11e5-a93f-080027a88f86-bing-thumb-183x118.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/03e3b083-fdcb-11e5-a93f-080027a88f86-Bing-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-04-08 14:46:49\",\"created_timestamp\":1460148409,\"demo_url\":\"\",\"short_description\":\"Reach your best customers and boost sales with $100 in free advertising from Bing Ads.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"8c9d1106-9151-4807-810d-9290b77b0baa\",\"name\":\"Post Creator\",\"slug\":\"post-creator\",\"category\":\"all\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/post-creator\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/8c9d1106-9151-4807-810d-9290b77b0baa-postCreator-thumb.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/8c9d1106-9151-4807-810d-9290b77b0baa-PostCreator-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-05-24 16:52:03\",\"created_timestamp\":1464130323,\"demo_url\":\"\",\"short_description\":\"PostCreator enables you to upload images, insert messages and add a logo to make more engaging branded content. And you don\\u2019t need to be a design pro to use it.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"cd7a05bf-28d8-11e6-bdaa-02cc4695eddb\",\"name\":\"Bank of America\",\"slug\":\"bank-of-america\",\"category\":\"financial\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/bank-of-america\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-assets-production\\/items\\/bankofAmerica_thumbnail.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/cd7a05bf-28d8-11e6-bdaa-02cc4695eddb-BankOfAmerica-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-06-14 21:39:10\",\"created_timestamp\":1465961950,\"demo_url\":\"\",\"short_description\":\"Customized small business banking solutions to improve your cash flow and streamline your business.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"e7629983-2c2f-11e6-b294-525400d3eba4\",\"name\":\"Social Suite\",\"slug\":\"social-suite\",\"category\":\"marketing\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/social-suite\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-square_thumbnail.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-SocialSuite-thumb.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/e7629983-2c2f-11e6-b294-525400d3eba4-preview.jpg\"},\"downloads\":[],\"prices\":{\"single_domain_license\":\"7.70\"},\"features\":\"\",\"created\":\"2016-06-28 20:33:35\",\"created_timestamp\":1467167615,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"},{\"id\":\"fd32f0d5-fdca-11e5-a93f-080027a88f86\",\"name\":\"Kabbage \",\"slug\":\"kabbage\",\"category\":\"financial\",\"type\":\"business-tools\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/kabbage\",\"sales_count\":0,\"is_service\":false,\"rating\":0,\"seller_name\":null,\"seller_url\":\"\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/fc7e7771-fdca-11e5-a93f-080027a88f86-Kabbage-thumb-183x118.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/fd32f0d5-fdca-11e5-a93f-080027a88f86-Kabbage-preview.png\"},\"downloads\":[],\"prices\":[],\"features\":\"\",\"created\":\"2016-04-08 14:46:37\",\"created_timestamp\":1460148397,\"demo_url\":\"\",\"short_description\":\"Get the security of a business line of credit today. Qualify for a line up to $100,000 in minutes. No cost or obligation to draw funds. Take only what you need, when you need it. Pay only for what you take. Access your cash 24\\/7.\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d41d8cd98f00b204e9800998ecf8427e\"}],\"page\":\"1\",\"pageCount\":1,\"records\":5}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:13:\"cache-control\";a:1:{i:0;s:3:\"900\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:52 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:10:\"set-cookie\";a:1:{i:0;s:143:\"SESSION=hgndfri1djg9c4nf7v6609j4c0; expires=Sat, 05-Aug-2017 03:48:52 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:14:\"content-length\";a:1:{i:0;s:4:\"5360\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:80:\"https://api.mojomarketplace.com/api/v2/items?type=business-tools&count=20&page=1\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"hgndfri1djg9c4nf7v6609j4c0\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"expires\";i:1501904932;s:7:\"max-age\";i:1501904932;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:6:\"secure\";b:1;s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501544932;s:11:\"last-access\";i:1501544932;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501544932;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}s:32:\"63da89e5939268076d6c5b80271e437f\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";s:1:\"*\";s:13:\"cache-control\";s:3:\"900\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:48:52 GMT\";s:6:\"server\";s:12:\"nginx/1.10.1\";s:10:\"set-cookie\";s:143:\"SESSION=p0o1mvcfg7kt11n9396pn28r36; expires=Sat, 05-Aug-2017 03:48:52 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:14:\"content-length\";s:5:\"31851\";}}s:4:\"body\";s:31851:\"{\"status\":\"success\",\"items\":[{\"id\":\"5340af5c-15b0-439b-a34e-68940a140b28\",\"name\":\"Oak Tree Logo\",\"slug\":\"oak-tree-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/oak-tree-logo-2\",\"sales_count\":46,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, Business, tree, modern, accounting, lawyer, insurance, oak\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-5340af5c-15b0-439b-a34e-68940a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"RGB color AI and CMYK EPS formats fully editable\",\"Easy to edit, change size, color and text\",\"Logo template suitable for Marketing and Financial\"],\"created\":\"2014-04-05 20:23:46\",\"created_timestamp\":1396751026,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"58a02746-7b54-4721-b58a-3a820a14153b\",\"name\":\"Car Shop Logo\",\"slug\":\"car-shop-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/car-shop-logo\",\"sales_count\":45,\"is_service\":false,\"rating\":0,\"seller_name\":\"GplayOne\",\"seller_url\":\"\",\"tags\":\"shop, mobile, car, automotive, sport, tuning\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-2XZRP.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-6NwXc.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58a02746-7b54-4721-b58a-3a820a14153b-oHYAS.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Editable 100%\",\"AI, EPS, PNG Format\",\"RGB, 300 DPI\"],\"created\":\"2017-02-12 02:14:08\",\"created_timestamp\":1486890848,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2b360c70ed32f191d5253f4ef1a4e940\"},{\"id\":\"5728fe86-4608-4d36-8193-68cd0a141f38\",\"name\":\"Eco Lady Logo\",\"slug\":\"eco-lady-logo-1\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-lady-logo-1\",\"sales_count\":25,\"is_service\":false,\"rating\":0,\"seller_name\":\"maestro99\",\"seller_url\":\"store\\/maestro99\",\"tags\":\"logo, fresh, Business, Vector, Corporate, clinic, medical, health, plant, earth, nature, Green, icon, tree, abstract, healthy, social, media, internet, modern, creative, professional, woman, colorful, brand, web, identity, logos, community, digital, human, eco, natural, symbol, ecology, shape, dummy, Queen, society, lady, herbal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-fcShF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-XbSXF.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5728fe86-4608-4d36-8193-68cd0a141f38-L3EJf.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5728fe86-4608-4d36-8193-68cd0a141f38-ITTKQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Herbal Logo\",\"Nature Logo\",\"Social Logo\"],\"created\":\"2016-05-03 13:40:38\",\"created_timestamp\":1462304438,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5260d9c971437c9a5a033d8fa2b08d0f\"},{\"id\":\"5197a5fc-f998-4242-b7b5-34780a140b1e\",\"name\":\"Badged \",\"slug\":\"badged\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/badged\",\"sales_count\":23,\"is_service\":false,\"rating\":0,\"seller_name\":\"Charlie.N\",\"seller_url\":\"store\\/charlie-n\",\"tags\":\"logo, Business, elegant, modern, professional, card, brand, company, simplistic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged3-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged2-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged4-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged1-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Dark and modern design\",\"Fully layered and organized\",\"Easily editable\"],\"created\":\"2013-05-18 10:29:05\",\"created_timestamp\":1368894545,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d493ef2ef2bc9f6eecf9a4368c482093\"},{\"id\":\"5827d703-5b5c-44a8-b8b7-3d5d0a14153a\",\"name\":\"Aeroglide Letter A Logo\",\"slug\":\"aeroglide-letter-a-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aeroglide-letter-a-logo\",\"sales_count\":15,\"is_service\":false,\"rating\":0,\"seller_name\":\"zixlo\",\"seller_url\":\"store\\/zixlo\",\"tags\":\"Business, travel, abstract, media, arrow, attorney, software, air, letter, education, app, realtor, realty, sport, accounting, law, consulting, aero\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-2WH7k.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-Tsy2W.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-91ak5.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-LRp9g.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"100% Editable &amp; Re-sizable vectors\",\"Texts are fully editable\",\"Format: AI &amp; EPS\"],\"created\":\"2016-11-12 19:59:25\",\"created_timestamp\":1479005965,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"1edcbed6eca100917fc3b34ce8ebccbb\"},{\"id\":\"53441cd6-e980-4681-8db8-1fd30a140b28\",\"name\":\"Majestic Logo\",\"slug\":\"majestic-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/majestic-logo\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, elegant, Retro, hotel, vintage, fashion, ornament, flourish, gold, winery, luxury, classy, Jewelry, resort, style, classic, royal, emblem, crest, majesty, luxurious, royalty, decorative, majestic, heraldic, calligraphy, calligraphic, ornate, heraldry\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53441cd6-e980-4681-8db8-1fd30a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB\",\"Fully Editable\"],\"created\":\"2014-04-08 10:05:46\",\"created_timestamp\":1396973146,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"51e2dc35-d914-46c9-a62f-48af0a140b26\",\"name\":\"Businesscard Pro\",\"slug\":\"businesscard-pro\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-1180x660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Print ready business cards\",\"Double Sided cards\",\"Free fonts and customization\"],\"created\":\"2013-07-14 12:34:56\",\"created_timestamp\":1373826896,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"574137cc-9c88-4d38-aeac-59a80a141f37\",\"name\":\"Eco Tech Logo\",\"slug\":\"eco-tech-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-tech-logo-2\",\"sales_count\":13,\"is_service\":false,\"rating\":5,\"seller_name\":\"meisuseno\",\"seller_url\":\"store\\/meisuseno\",\"tags\":\"logo, plant, nature, Green, leaf, leaves, cool, computer, technology, network, tech, modern, creative, professional, growth, IT, eco, service, natural, creatives, hitech, networking, circuit, computing\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-MtYbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-Fctqy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-574137cc-9c88-4d38-aeac-59a80a141f37-ltVu2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-574137cc-9c88-4d38-aeac-59a80a141f37-kR6sv.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"AI, EPS, PNG Format\",\"Easy editable\",\"CMYK, 300 DPI\"],\"created\":\"2016-05-21 22:39:33\",\"created_timestamp\":1463891973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"acc473f4809e61e9a72cf890a017464a\"},{\"id\":\"56dcf586-6044-40c3-9ba5-312c0a140b32\",\"name\":\"Lighthouse logo\",\"slug\":\"lighthouse-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/lighthouse-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"phuadiesta\",\"seller_url\":\"\",\"tags\":\"simple, logo, Vector, blue, icon, symbol, consulting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-E60Ur.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-CAQEA.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-4WkgR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-VNG3Z.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56dcf586-6044-40c3-9ba5-312c0a140b32-mPaae.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Fully editable\",\"Format AI, EPS &amp; PNG transparent\",\"Resizable vector\"],\"created\":\"2016-03-06 20:31:20\",\"created_timestamp\":1457321480,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3de01ed841b0f15cf895480a056765bc\"},{\"id\":\"5654ad2f-a648-406f-aff0-09310a141f38\",\"name\":\"Valentine Logo\",\"slug\":\"valentine-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/valentine-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"Maraz\",\"seller_url\":\"store\\/black-magic\",\"tags\":\"clean, logo, Business, social, Hearts, heart, modern, charity, Decoration, love, red, art, valentine, beauty, elegance, Pink, foundation, decorative, society, illustrative, organisation, partner, caring, volunteer\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-SNRdw.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-QlzmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-13nWB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-2ry4E.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-jx3rO.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5654ad2f-a648-406f-aff0-09310a141f38-GKDxw.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Editable\",\"Resizable\",\"Easy to edit color \\/ text\"],\"created\":\"2015-11-24 11:32:29\",\"created_timestamp\":1448389949,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"f9a7fc891bffa7e81ffe3547b72dc4e1\"},{\"id\":\"538cbb0a-ec2c-479e-bacc-530e0a140b28\",\"name\":\"Smart Phone Business Card\",\"slug\":\"smart-phone-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/smart-phone-business-card\",\"sales_count\":11,\"is_service\":false,\"rating\":0,\"seller_name\":\"xnorpix\",\"seller_url\":\"\",\"tags\":\"computer, mobile, iphone, android, ios, phone, electronic, smart, smartphone\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-136x136-M5WmW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-260x156-byoEO.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-538cbb0a-ec2c-479e-bacc-530e0a140b28-1180x660-XBmZT.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-06-02 12:24:09\",\"created_timestamp\":1401733449,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c192d3545fbc9feed64ed9d317ee9379\"},{\"id\":\"57307c9d-45d4-42ec-b525-40cd0a141f38\",\"name\":\"Goze Tech\\/G Letter Logo\",\"slug\":\"goze-tech-g-letter-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/goze-tech-g-letter-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"stock6Design\",\"seller_url\":\"store\\/stock6design\",\"tags\":\"clean, simple, logo, Business, circle, travel, store, media, technology, tech, modern, creative, professional, metro, fashion, colorful, bold, brand, software, web, air, character, multicolor, flat, app, logotype, car, automotive, studio, digital, advance, transport, style, Booking, tourism, forum, tour, pixel, strong, wheel, auto, repair, garage, transportation, flight, 2D, alphabet, travels, drive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-4o9Ae.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-WDQob.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57307c9d-45d4-42ec-b525-40cd0a141f38-4Mwom.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57307c9d-45d4-42ec-b525-40cd0a141f38-XYpch.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Non-exclusive logo $49\",\"Exclusive logo $200\",\"Any modification $20\"],\"created\":\"2016-05-09 06:06:13\",\"created_timestamp\":1462795573,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"b5ee5b8fd4da91f8d8821095c8c5fd9e\"},{\"id\":\"5463e951-f0b4-4e8d-a890-3e520a141528\",\"name\":\"Royal Crown Logo\",\"slug\":\"royal-crown-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/royal-crown-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"Flux\",\"seller_url\":\"\",\"tags\":\"clean, elegant, modern, professional, hotel, fashion, ornament, web, smooth, gold, luxury, Jewelry, classic, royal, Queen, tribal, shield, emblem, ornamental, crest, majesty, luxurious, royalty, jewel, decorative, majestic, king, crown, silver, kingdom\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-368x296-szHMr.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-136x136-acsxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-260x156-EpCbI.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5463e951-f0b4-4e8d-a890-3e520a141528-1180x660-J3PsQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-11-12 16:17:43\",\"created_timestamp\":1415834263,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fea6e54423e9e7297fba95ec22c3a0cb\"},{\"id\":\"5255a038-4cc0-44d3-8202-6a080a140b24\",\"name\":\"Businesscard Pro 11\",\"slug\":\"businesscard-pro-11\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro-11\",\"sales_count\":8,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_368-x-296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_1180-x-660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Clean and professional design\",\"Print Ready\"],\"created\":\"2013-10-09 12:32:51\",\"created_timestamp\":1381343571,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"557cadc8-7de0-45c9-9cd4-07e50a141f38\",\"name\":\"Letter C  Abstract Logo\",\"slug\":\"letter-c-abstract-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/letter-c-abstract-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"GoranJovicic\",\"seller_url\":\"store\\/goran-jovicic-logo-place\",\"tags\":\"logo, Business, Vector, Green, abstract, modern, colorful, color, company, letter, work, hexagon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-368x296-GAsQk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-136x136-fkIel.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-260x156-0OJRJ.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-557cadc8-7de0-45c9-9cd4-07e50a141f38-1180x660-dHcgA.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-06-13 17:16:12\",\"created_timestamp\":1434237372,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3d06542e63fb5194b1f391d886ae18da\"},{\"id\":\"530a244a-a16c-407f-aa0d-328c0a141528\",\"name\":\"Poligon Business Card\",\"slug\":\"poligon-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/poligon-business-card\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"RafaelOliveira\",\"seller_url\":\"store\\/rafael-oliveira\",\"tags\":\"simple, Corporate, abstract, thin, modern, creative, professional, card, unique, Stationary, brand, identity, landscape, success, mosaic, portrait, biz, squared, polygon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-Big-mm-resize-368x296-530a27c74831a.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-square-mm-resize-136x136-530a27784fbff.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-thumbnail-mm-resize-260x156-530a279dc1516.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530a244a-a16c-407f-aa0d-328c0a141528-main-mm-resize-1180x660-530a2779d03c5.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"Fully Editable Files\",\"Print ready\"],\"created\":\"2014-02-23 09:54:57\",\"created_timestamp\":1393174497,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5deb8151693d0900697faa6ed61a2e46\"},{\"id\":\"53434db1-aaa8-4c4e-b58c-5b0b0a141528\",\"name\":\"Funky Geek Logo\",\"slug\":\"funky-geek-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/funky-geek-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, fresh, Business, man, intelligent, people, stylish, fashion, brand, identity, boy, stylized, glasses, hair, branding, happy, human, style, fashionable, nerd, geeky, geek, hairstyle, nerdy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53434db1-aaa8-4c4e-b58c-5b0b0a141528-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Tech, Geek logo\",\"CMYK and RGB\",\"Easy to edit \"],\"created\":\"2014-04-07 19:20:17\",\"created_timestamp\":1396920017,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"54f9e256-39e4-4d3c-bfe6-3a490a141528\",\"name\":\"Drone Logo\",\"slug\":\"drone-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/drone-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"ManggaDesign\",\"seller_url\":\"store\\/manggadesign\",\"tags\":\"camera, brand, game, fun, symbol, eye, Shutter, drone\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-368x296-hxxTd.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-136x136-I9Aiy.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-260x156-T7i8a.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54f9e256-39e4-4d3c-bfe6-3a490a141528-1180x660-TNsqI.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-03-06 10:25:09\",\"created_timestamp\":1425662709,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"9905cf77b7f15c0706fb4f8a72585228\"},{\"id\":\"520d14bd-23f0-49f5-96f4-0bc20a140b26\",\"name\":\"Simple and Clean Business Card - Leonard\",\"slug\":\"simple-and-clean-business-card-leonard\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-and-clean-business-card-leonard\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"juraj0611\",\"seller_url\":\"store\\/juraj0611\",\"tags\":\"clean, simple, Business, Corporate, professional\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-520d14bd-23f0-49f5-96f4-0bc20a140b26-view-mm-resize-1180x660.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Accounting\",\"Real Estate\"],\"created\":\"2013-08-15 12:03:22\",\"created_timestamp\":1376589802,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"49daef7037b7f970cb2253198d955391\"},{\"id\":\"519097bd-cc3c-42c2-8c03-64960a140b1e\",\"name\":\"Healthcare logo\",\"slug\":\"healthcare-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/healthcare-logo\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"Comotion\",\"seller_url\":\"\",\"tags\":\"logo, Business\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-LargeThumbnail-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-SquareThumbnail-mm-resize-135x135.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-Thumbnail-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-519097bd-cc3c-42c2-8c03-64960a140b1e-Preview-image-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Great for medical & healthcare sites\",\"Simple & clean look\",\" Fully editable in vector based programs\"],\"created\":\"2013-05-13 03:46:44\",\"created_timestamp\":1368438404,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"afe5b0637a0d37020f47466625d540d2\"}],\"page\":\"1\",\"pageCount\":294,\"records\":5861}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"p0o1mvcfg7kt11n9396pn28r36\";s:7:\"expires\";i:1501904932;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:31851:\"{\"status\":\"success\",\"items\":[{\"id\":\"5340af5c-15b0-439b-a34e-68940a140b28\",\"name\":\"Oak Tree Logo\",\"slug\":\"oak-tree-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/oak-tree-logo-2\",\"sales_count\":46,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, Business, tree, modern, accounting, lawyer, insurance, oak\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-5340af5c-15b0-439b-a34e-68940a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"RGB color AI and CMYK EPS formats fully editable\",\"Easy to edit, change size, color and text\",\"Logo template suitable for Marketing and Financial\"],\"created\":\"2014-04-05 20:23:46\",\"created_timestamp\":1396751026,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"58a02746-7b54-4721-b58a-3a820a14153b\",\"name\":\"Car Shop Logo\",\"slug\":\"car-shop-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/car-shop-logo\",\"sales_count\":45,\"is_service\":false,\"rating\":0,\"seller_name\":\"GplayOne\",\"seller_url\":\"\",\"tags\":\"shop, mobile, car, automotive, sport, tuning\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-2XZRP.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-6NwXc.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58a02746-7b54-4721-b58a-3a820a14153b-oHYAS.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Editable 100%\",\"AI, EPS, PNG Format\",\"RGB, 300 DPI\"],\"created\":\"2017-02-12 02:14:08\",\"created_timestamp\":1486890848,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2b360c70ed32f191d5253f4ef1a4e940\"},{\"id\":\"5728fe86-4608-4d36-8193-68cd0a141f38\",\"name\":\"Eco Lady Logo\",\"slug\":\"eco-lady-logo-1\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-lady-logo-1\",\"sales_count\":25,\"is_service\":false,\"rating\":0,\"seller_name\":\"maestro99\",\"seller_url\":\"store\\/maestro99\",\"tags\":\"logo, fresh, Business, Vector, Corporate, clinic, medical, health, plant, earth, nature, Green, icon, tree, abstract, healthy, social, media, internet, modern, creative, professional, woman, colorful, brand, web, identity, logos, community, digital, human, eco, natural, symbol, ecology, shape, dummy, Queen, society, lady, herbal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-fcShF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-XbSXF.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5728fe86-4608-4d36-8193-68cd0a141f38-L3EJf.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5728fe86-4608-4d36-8193-68cd0a141f38-ITTKQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Herbal Logo\",\"Nature Logo\",\"Social Logo\"],\"created\":\"2016-05-03 13:40:38\",\"created_timestamp\":1462304438,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5260d9c971437c9a5a033d8fa2b08d0f\"},{\"id\":\"5197a5fc-f998-4242-b7b5-34780a140b1e\",\"name\":\"Badged \",\"slug\":\"badged\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/badged\",\"sales_count\":23,\"is_service\":false,\"rating\":0,\"seller_name\":\"Charlie.N\",\"seller_url\":\"store\\/charlie-n\",\"tags\":\"logo, Business, elegant, modern, professional, card, brand, company, simplistic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged3-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged2-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged4-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged1-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Dark and modern design\",\"Fully layered and organized\",\"Easily editable\"],\"created\":\"2013-05-18 10:29:05\",\"created_timestamp\":1368894545,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d493ef2ef2bc9f6eecf9a4368c482093\"},{\"id\":\"5827d703-5b5c-44a8-b8b7-3d5d0a14153a\",\"name\":\"Aeroglide Letter A Logo\",\"slug\":\"aeroglide-letter-a-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aeroglide-letter-a-logo\",\"sales_count\":15,\"is_service\":false,\"rating\":0,\"seller_name\":\"zixlo\",\"seller_url\":\"store\\/zixlo\",\"tags\":\"Business, travel, abstract, media, arrow, attorney, software, air, letter, education, app, realtor, realty, sport, accounting, law, consulting, aero\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-2WH7k.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-Tsy2W.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-91ak5.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-LRp9g.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"100% Editable &amp; Re-sizable vectors\",\"Texts are fully editable\",\"Format: AI &amp; EPS\"],\"created\":\"2016-11-12 19:59:25\",\"created_timestamp\":1479005965,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"1edcbed6eca100917fc3b34ce8ebccbb\"},{\"id\":\"53441cd6-e980-4681-8db8-1fd30a140b28\",\"name\":\"Majestic Logo\",\"slug\":\"majestic-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/majestic-logo\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, elegant, Retro, hotel, vintage, fashion, ornament, flourish, gold, winery, luxury, classy, Jewelry, resort, style, classic, royal, emblem, crest, majesty, luxurious, royalty, decorative, majestic, heraldic, calligraphy, calligraphic, ornate, heraldry\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53441cd6-e980-4681-8db8-1fd30a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB\",\"Fully Editable\"],\"created\":\"2014-04-08 10:05:46\",\"created_timestamp\":1396973146,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"51e2dc35-d914-46c9-a62f-48af0a140b26\",\"name\":\"Businesscard Pro\",\"slug\":\"businesscard-pro\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-1180x660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Print ready business cards\",\"Double Sided cards\",\"Free fonts and customization\"],\"created\":\"2013-07-14 12:34:56\",\"created_timestamp\":1373826896,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"574137cc-9c88-4d38-aeac-59a80a141f37\",\"name\":\"Eco Tech Logo\",\"slug\":\"eco-tech-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-tech-logo-2\",\"sales_count\":13,\"is_service\":false,\"rating\":5,\"seller_name\":\"meisuseno\",\"seller_url\":\"store\\/meisuseno\",\"tags\":\"logo, plant, nature, Green, leaf, leaves, cool, computer, technology, network, tech, modern, creative, professional, growth, IT, eco, service, natural, creatives, hitech, networking, circuit, computing\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-MtYbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-Fctqy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-574137cc-9c88-4d38-aeac-59a80a141f37-ltVu2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-574137cc-9c88-4d38-aeac-59a80a141f37-kR6sv.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"AI, EPS, PNG Format\",\"Easy editable\",\"CMYK, 300 DPI\"],\"created\":\"2016-05-21 22:39:33\",\"created_timestamp\":1463891973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"acc473f4809e61e9a72cf890a017464a\"},{\"id\":\"56dcf586-6044-40c3-9ba5-312c0a140b32\",\"name\":\"Lighthouse logo\",\"slug\":\"lighthouse-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/lighthouse-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"phuadiesta\",\"seller_url\":\"\",\"tags\":\"simple, logo, Vector, blue, icon, symbol, consulting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-E60Ur.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-CAQEA.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-4WkgR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-VNG3Z.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56dcf586-6044-40c3-9ba5-312c0a140b32-mPaae.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Fully editable\",\"Format AI, EPS &amp; PNG transparent\",\"Resizable vector\"],\"created\":\"2016-03-06 20:31:20\",\"created_timestamp\":1457321480,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3de01ed841b0f15cf895480a056765bc\"},{\"id\":\"5654ad2f-a648-406f-aff0-09310a141f38\",\"name\":\"Valentine Logo\",\"slug\":\"valentine-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/valentine-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"Maraz\",\"seller_url\":\"store\\/black-magic\",\"tags\":\"clean, logo, Business, social, Hearts, heart, modern, charity, Decoration, love, red, art, valentine, beauty, elegance, Pink, foundation, decorative, society, illustrative, organisation, partner, caring, volunteer\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-SNRdw.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-QlzmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-13nWB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-2ry4E.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-jx3rO.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5654ad2f-a648-406f-aff0-09310a141f38-GKDxw.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Editable\",\"Resizable\",\"Easy to edit color \\/ text\"],\"created\":\"2015-11-24 11:32:29\",\"created_timestamp\":1448389949,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"f9a7fc891bffa7e81ffe3547b72dc4e1\"},{\"id\":\"538cbb0a-ec2c-479e-bacc-530e0a140b28\",\"name\":\"Smart Phone Business Card\",\"slug\":\"smart-phone-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/smart-phone-business-card\",\"sales_count\":11,\"is_service\":false,\"rating\":0,\"seller_name\":\"xnorpix\",\"seller_url\":\"\",\"tags\":\"computer, mobile, iphone, android, ios, phone, electronic, smart, smartphone\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-136x136-M5WmW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-260x156-byoEO.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-538cbb0a-ec2c-479e-bacc-530e0a140b28-1180x660-XBmZT.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-06-02 12:24:09\",\"created_timestamp\":1401733449,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c192d3545fbc9feed64ed9d317ee9379\"},{\"id\":\"57307c9d-45d4-42ec-b525-40cd0a141f38\",\"name\":\"Goze Tech\\/G Letter Logo\",\"slug\":\"goze-tech-g-letter-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/goze-tech-g-letter-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"stock6Design\",\"seller_url\":\"store\\/stock6design\",\"tags\":\"clean, simple, logo, Business, circle, travel, store, media, technology, tech, modern, creative, professional, metro, fashion, colorful, bold, brand, software, web, air, character, multicolor, flat, app, logotype, car, automotive, studio, digital, advance, transport, style, Booking, tourism, forum, tour, pixel, strong, wheel, auto, repair, garage, transportation, flight, 2D, alphabet, travels, drive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-4o9Ae.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-WDQob.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57307c9d-45d4-42ec-b525-40cd0a141f38-4Mwom.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57307c9d-45d4-42ec-b525-40cd0a141f38-XYpch.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Non-exclusive logo $49\",\"Exclusive logo $200\",\"Any modification $20\"],\"created\":\"2016-05-09 06:06:13\",\"created_timestamp\":1462795573,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"b5ee5b8fd4da91f8d8821095c8c5fd9e\"},{\"id\":\"5463e951-f0b4-4e8d-a890-3e520a141528\",\"name\":\"Royal Crown Logo\",\"slug\":\"royal-crown-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/royal-crown-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"Flux\",\"seller_url\":\"\",\"tags\":\"clean, elegant, modern, professional, hotel, fashion, ornament, web, smooth, gold, luxury, Jewelry, classic, royal, Queen, tribal, shield, emblem, ornamental, crest, majesty, luxurious, royalty, jewel, decorative, majestic, king, crown, silver, kingdom\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-368x296-szHMr.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-136x136-acsxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-260x156-EpCbI.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5463e951-f0b4-4e8d-a890-3e520a141528-1180x660-J3PsQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-11-12 16:17:43\",\"created_timestamp\":1415834263,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fea6e54423e9e7297fba95ec22c3a0cb\"},{\"id\":\"5255a038-4cc0-44d3-8202-6a080a140b24\",\"name\":\"Businesscard Pro 11\",\"slug\":\"businesscard-pro-11\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro-11\",\"sales_count\":8,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_368-x-296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_1180-x-660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Clean and professional design\",\"Print Ready\"],\"created\":\"2013-10-09 12:32:51\",\"created_timestamp\":1381343571,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"557cadc8-7de0-45c9-9cd4-07e50a141f38\",\"name\":\"Letter C  Abstract Logo\",\"slug\":\"letter-c-abstract-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/letter-c-abstract-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"GoranJovicic\",\"seller_url\":\"store\\/goran-jovicic-logo-place\",\"tags\":\"logo, Business, Vector, Green, abstract, modern, colorful, color, company, letter, work, hexagon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-368x296-GAsQk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-136x136-fkIel.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-260x156-0OJRJ.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-557cadc8-7de0-45c9-9cd4-07e50a141f38-1180x660-dHcgA.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-06-13 17:16:12\",\"created_timestamp\":1434237372,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3d06542e63fb5194b1f391d886ae18da\"},{\"id\":\"530a244a-a16c-407f-aa0d-328c0a141528\",\"name\":\"Poligon Business Card\",\"slug\":\"poligon-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/poligon-business-card\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"RafaelOliveira\",\"seller_url\":\"store\\/rafael-oliveira\",\"tags\":\"simple, Corporate, abstract, thin, modern, creative, professional, card, unique, Stationary, brand, identity, landscape, success, mosaic, portrait, biz, squared, polygon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-Big-mm-resize-368x296-530a27c74831a.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-square-mm-resize-136x136-530a27784fbff.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-thumbnail-mm-resize-260x156-530a279dc1516.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530a244a-a16c-407f-aa0d-328c0a141528-main-mm-resize-1180x660-530a2779d03c5.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"Fully Editable Files\",\"Print ready\"],\"created\":\"2014-02-23 09:54:57\",\"created_timestamp\":1393174497,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5deb8151693d0900697faa6ed61a2e46\"},{\"id\":\"53434db1-aaa8-4c4e-b58c-5b0b0a141528\",\"name\":\"Funky Geek Logo\",\"slug\":\"funky-geek-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/funky-geek-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, fresh, Business, man, intelligent, people, stylish, fashion, brand, identity, boy, stylized, glasses, hair, branding, happy, human, style, fashionable, nerd, geeky, geek, hairstyle, nerdy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53434db1-aaa8-4c4e-b58c-5b0b0a141528-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Tech, Geek logo\",\"CMYK and RGB\",\"Easy to edit \"],\"created\":\"2014-04-07 19:20:17\",\"created_timestamp\":1396920017,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"54f9e256-39e4-4d3c-bfe6-3a490a141528\",\"name\":\"Drone Logo\",\"slug\":\"drone-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/drone-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"ManggaDesign\",\"seller_url\":\"store\\/manggadesign\",\"tags\":\"camera, brand, game, fun, symbol, eye, Shutter, drone\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-368x296-hxxTd.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-136x136-I9Aiy.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-260x156-T7i8a.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54f9e256-39e4-4d3c-bfe6-3a490a141528-1180x660-TNsqI.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-03-06 10:25:09\",\"created_timestamp\":1425662709,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"9905cf77b7f15c0706fb4f8a72585228\"},{\"id\":\"520d14bd-23f0-49f5-96f4-0bc20a140b26\",\"name\":\"Simple and Clean Business Card - Leonard\",\"slug\":\"simple-and-clean-business-card-leonard\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-and-clean-business-card-leonard\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"juraj0611\",\"seller_url\":\"store\\/juraj0611\",\"tags\":\"clean, simple, Business, Corporate, professional\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-520d14bd-23f0-49f5-96f4-0bc20a140b26-view-mm-resize-1180x660.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Accounting\",\"Real Estate\"],\"created\":\"2013-08-15 12:03:22\",\"created_timestamp\":1376589802,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"49daef7037b7f970cb2253198d955391\"},{\"id\":\"519097bd-cc3c-42c2-8c03-64960a140b1e\",\"name\":\"Healthcare logo\",\"slug\":\"healthcare-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/healthcare-logo\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"Comotion\",\"seller_url\":\"\",\"tags\":\"logo, Business\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-LargeThumbnail-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-SquareThumbnail-mm-resize-135x135.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-Thumbnail-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-519097bd-cc3c-42c2-8c03-64960a140b1e-Preview-image-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Great for medical & healthcare sites\",\"Simple & clean look\",\" Fully editable in vector based programs\"],\"created\":\"2013-05-13 03:46:44\",\"created_timestamp\":1368438404,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"afe5b0637a0d37020f47466625d540d2\"}],\"page\":\"1\",\"pageCount\":294,\"records\":5861}\";s:3:\"raw\";s:32253:\"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nCache-Control: 900\r\nContent-Type: application/json; charset=UTF-8\r\nDate: Mon, 31 Jul 2017 23:48:52 GMT\r\nServer: nginx/1.10.1\r\nSet-Cookie: SESSION=p0o1mvcfg7kt11n9396pn28r36; expires=Sat, 05-Aug-2017 03:48:52 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\r\nX-Powered-By: PHP/5.6.22\r\nContent-Length: 31851\r\nConnection: Close\r\n\r\n{\"status\":\"success\",\"items\":[{\"id\":\"5340af5c-15b0-439b-a34e-68940a140b28\",\"name\":\"Oak Tree Logo\",\"slug\":\"oak-tree-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/oak-tree-logo-2\",\"sales_count\":46,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, Business, tree, modern, accounting, lawyer, insurance, oak\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-5340af5c-15b0-439b-a34e-68940a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-5340af5c-15b0-439b-a34e-68940a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"RGB color AI and CMYK EPS formats fully editable\",\"Easy to edit, change size, color and text\",\"Logo template suitable for Marketing and Financial\"],\"created\":\"2014-04-05 20:23:46\",\"created_timestamp\":1396751026,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"58a02746-7b54-4721-b58a-3a820a14153b\",\"name\":\"Car Shop Logo\",\"slug\":\"car-shop-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/car-shop-logo\",\"sales_count\":45,\"is_service\":false,\"rating\":0,\"seller_name\":\"GplayOne\",\"seller_url\":\"\",\"tags\":\"shop, mobile, car, automotive, sport, tuning\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-2XZRP.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-58a02746-7b54-4721-b58a-3a820a14153b-6NwXc.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-58a02746-7b54-4721-b58a-3a820a14153b-yRjka.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-58a02746-7b54-4721-b58a-3a820a14153b-oHYAS.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"0.00\",\"5_domain_license\":\"0.00\",\"developer_license\":\"0.00\"},\"features\":[\"Editable 100%\",\"AI, EPS, PNG Format\",\"RGB, 300 DPI\"],\"created\":\"2017-02-12 02:14:08\",\"created_timestamp\":1486890848,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2b360c70ed32f191d5253f4ef1a4e940\"},{\"id\":\"5728fe86-4608-4d36-8193-68cd0a141f38\",\"name\":\"Eco Lady Logo\",\"slug\":\"eco-lady-logo-1\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-lady-logo-1\",\"sales_count\":25,\"is_service\":false,\"rating\":0,\"seller_name\":\"maestro99\",\"seller_url\":\"store\\/maestro99\",\"tags\":\"logo, fresh, Business, Vector, Corporate, clinic, medical, health, plant, earth, nature, Green, icon, tree, abstract, healthy, social, media, internet, modern, creative, professional, woman, colorful, brand, web, identity, logos, community, digital, human, eco, natural, symbol, ecology, shape, dummy, Queen, society, lady, herbal\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-fcShF.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5728fe86-4608-4d36-8193-68cd0a141f38-XbSXF.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5728fe86-4608-4d36-8193-68cd0a141f38-L3EJf.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5728fe86-4608-4d36-8193-68cd0a141f38-ITTKQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Herbal Logo\",\"Nature Logo\",\"Social Logo\"],\"created\":\"2016-05-03 13:40:38\",\"created_timestamp\":1462304438,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5260d9c971437c9a5a033d8fa2b08d0f\"},{\"id\":\"5197a5fc-f998-4242-b7b5-34780a140b1e\",\"name\":\"Badged \",\"slug\":\"badged\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/badged\",\"sales_count\":23,\"is_service\":false,\"rating\":0,\"seller_name\":\"Charlie.N\",\"seller_url\":\"store\\/charlie-n\",\"tags\":\"logo, Business, elegant, modern, professional, card, brand, company, simplistic\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged3-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged2-mm-resize-136x136.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged4-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-5197a5fc-f998-4242-b7b5-34780a140b1e-Badged1-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Dark and modern design\",\"Fully layered and organized\",\"Easily editable\"],\"created\":\"2013-05-18 10:29:05\",\"created_timestamp\":1368894545,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"d493ef2ef2bc9f6eecf9a4368c482093\"},{\"id\":\"5827d703-5b5c-44a8-b8b7-3d5d0a14153a\",\"name\":\"Aeroglide Letter A Logo\",\"slug\":\"aeroglide-letter-a-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/aeroglide-letter-a-logo\",\"sales_count\":15,\"is_service\":false,\"rating\":0,\"seller_name\":\"zixlo\",\"seller_url\":\"store\\/zixlo\",\"tags\":\"Business, travel, abstract, media, arrow, attorney, software, air, letter, education, app, realtor, realty, sport, accounting, law, consulting, aero\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-2WH7k.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-Tsy2W.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-91ak5.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5827d703-5b5c-44a8-b8b7-3d5d0a14153a-LRp9g.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"100% Editable &amp; Re-sizable vectors\",\"Texts are fully editable\",\"Format: AI &amp; EPS\"],\"created\":\"2016-11-12 19:59:25\",\"created_timestamp\":1479005965,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"1edcbed6eca100917fc3b34ce8ebccbb\"},{\"id\":\"53441cd6-e980-4681-8db8-1fd30a140b28\",\"name\":\"Majestic Logo\",\"slug\":\"majestic-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/majestic-logo\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, elegant, Retro, hotel, vintage, fashion, ornament, flourish, gold, winery, luxury, classy, Jewelry, resort, style, classic, royal, emblem, crest, majesty, luxurious, royalty, decorative, majestic, heraldic, calligraphy, calligraphic, ornate, heraldry\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53441cd6-e980-4681-8db8-1fd30a140b28-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53441cd6-e980-4681-8db8-1fd30a140b28-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB\",\"Fully Editable\"],\"created\":\"2014-04-08 10:05:46\",\"created_timestamp\":1396973146,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"51e2dc35-d914-46c9-a62f-48af0a140b26\",\"name\":\"Businesscard Pro\",\"slug\":\"businesscard-pro\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro\",\"sales_count\":14,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-51e2dc35-d914-46c9-a62f-48af0a140b26-businesscard-pro-1180x660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Print ready business cards\",\"Double Sided cards\",\"Free fonts and customization\"],\"created\":\"2013-07-14 12:34:56\",\"created_timestamp\":1373826896,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"574137cc-9c88-4d38-aeac-59a80a141f37\",\"name\":\"Eco Tech Logo\",\"slug\":\"eco-tech-logo-2\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/eco-tech-logo-2\",\"sales_count\":13,\"is_service\":false,\"rating\":5,\"seller_name\":\"meisuseno\",\"seller_url\":\"store\\/meisuseno\",\"tags\":\"logo, plant, nature, Green, leaf, leaves, cool, computer, technology, network, tech, modern, creative, professional, growth, IT, eco, service, natural, creatives, hitech, networking, circuit, computing\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-MtYbX.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-574137cc-9c88-4d38-aeac-59a80a141f37-Fctqy.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-574137cc-9c88-4d38-aeac-59a80a141f37-ltVu2.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-574137cc-9c88-4d38-aeac-59a80a141f37-kR6sv.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"AI, EPS, PNG Format\",\"Easy editable\",\"CMYK, 300 DPI\"],\"created\":\"2016-05-21 22:39:33\",\"created_timestamp\":1463891973,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"acc473f4809e61e9a72cf890a017464a\"},{\"id\":\"56dcf586-6044-40c3-9ba5-312c0a140b32\",\"name\":\"Lighthouse logo\",\"slug\":\"lighthouse-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/lighthouse-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"phuadiesta\",\"seller_url\":\"\",\"tags\":\"simple, logo, Vector, blue, icon, symbol, consulting\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-E60Ur.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-56dcf586-6044-40c3-9ba5-312c0a140b32-CAQEA.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-4WkgR.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-56dcf586-6044-40c3-9ba5-312c0a140b32-VNG3Z.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-56dcf586-6044-40c3-9ba5-312c0a140b32-mPaae.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Fully editable\",\"Format AI, EPS &amp; PNG transparent\",\"Resizable vector\"],\"created\":\"2016-03-06 20:31:20\",\"created_timestamp\":1457321480,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3de01ed841b0f15cf895480a056765bc\"},{\"id\":\"5654ad2f-a648-406f-aff0-09310a141f38\",\"name\":\"Valentine Logo\",\"slug\":\"valentine-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/valentine-logo\",\"sales_count\":12,\"is_service\":false,\"rating\":0,\"seller_name\":\"Maraz\",\"seller_url\":\"store\\/black-magic\",\"tags\":\"clean, logo, Business, social, Hearts, heart, modern, charity, Decoration, love, red, art, valentine, beauty, elegance, Pink, foundation, decorative, society, illustrative, organisation, partner, caring, volunteer\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-SNRdw.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5654ad2f-a648-406f-aff0-09310a141f38-QlzmI.jpg\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-13nWB.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-2ry4E.jpg\",\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-5654ad2f-a648-406f-aff0-09310a141f38-jx3rO.jpg\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5654ad2f-a648-406f-aff0-09310a141f38-GKDxw.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Editable\",\"Resizable\",\"Easy to edit color \\/ text\"],\"created\":\"2015-11-24 11:32:29\",\"created_timestamp\":1448389949,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"f9a7fc891bffa7e81ffe3547b72dc4e1\"},{\"id\":\"538cbb0a-ec2c-479e-bacc-530e0a140b28\",\"name\":\"Smart Phone Business Card\",\"slug\":\"smart-phone-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/smart-phone-business-card\",\"sales_count\":11,\"is_service\":false,\"rating\":0,\"seller_name\":\"xnorpix\",\"seller_url\":\"\",\"tags\":\"computer, mobile, iphone, android, ios, phone, electronic, smart, smartphone\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-136x136-M5WmW.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-538cbb0a-ec2c-479e-bacc-530e0a140b28-260x156-byoEO.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-538cbb0a-ec2c-479e-bacc-530e0a140b28-1180x660-XBmZT.jpg\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-06-02 12:24:09\",\"created_timestamp\":1401733449,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"c192d3545fbc9feed64ed9d317ee9379\"},{\"id\":\"57307c9d-45d4-42ec-b525-40cd0a141f38\",\"name\":\"Goze Tech\\/G Letter Logo\",\"slug\":\"goze-tech-g-letter-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/goze-tech-g-letter-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"stock6Design\",\"seller_url\":\"store\\/stock6design\",\"tags\":\"clean, simple, logo, Business, circle, travel, store, media, technology, tech, modern, creative, professional, metro, fashion, colorful, bold, brand, software, web, air, character, multicolor, flat, app, logotype, car, automotive, studio, digital, advance, transport, style, Booking, tourism, forum, tour, pixel, strong, wheel, auto, repair, garage, transportation, flight, 2D, alphabet, travels, drive\",\"images\":{\"large_thumbnail_url\":\"\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-4o9Ae.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-57307c9d-45d4-42ec-b525-40cd0a141f38-WDQob.png\",\"screen_shot_urls\":[\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/screen_shots-57307c9d-45d4-42ec-b525-40cd0a141f38-4Mwom.png\"],\"preview_url\":\"https:\\/\\/marketplace-assets-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-57307c9d-45d4-42ec-b525-40cd0a141f38-XYpch.png\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\",\"5_domain_license\":\"196.00\",\"developer_license\":\"1225.00\"},\"features\":[\"Non-exclusive logo $49\",\"Exclusive logo $200\",\"Any modification $20\"],\"created\":\"2016-05-09 06:06:13\",\"created_timestamp\":1462795573,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"b5ee5b8fd4da91f8d8821095c8c5fd9e\"},{\"id\":\"5463e951-f0b4-4e8d-a890-3e520a141528\",\"name\":\"Royal Crown Logo\",\"slug\":\"royal-crown-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/royal-crown-logo\",\"sales_count\":9,\"is_service\":false,\"rating\":0,\"seller_name\":\"Flux\",\"seller_url\":\"\",\"tags\":\"clean, elegant, modern, professional, hotel, fashion, ornament, web, smooth, gold, luxury, Jewelry, classic, royal, Queen, tribal, shield, emblem, ornamental, crest, majesty, luxurious, royalty, jewel, decorative, majestic, king, crown, silver, kingdom\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-368x296-szHMr.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-136x136-acsxr.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-5463e951-f0b4-4e8d-a890-3e520a141528-260x156-EpCbI.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-5463e951-f0b4-4e8d-a890-3e520a141528-1180x660-J3PsQ.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2014-11-12 16:17:43\",\"created_timestamp\":1415834263,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"fea6e54423e9e7297fba95ec22c3a0cb\"},{\"id\":\"5255a038-4cc0-44d3-8202-6a080a140b24\",\"name\":\"Businesscard Pro 11\",\"slug\":\"businesscard-pro-11\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/businesscard-pro-11\",\"sales_count\":8,\"is_service\":false,\"rating\":0,\"seller_name\":\"jvyda\",\"seller_url\":\"store\\/jayant-vyda\",\"tags\":\"\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_368-x-296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-5255a038-4cc0-44d3-8202-6a080a140b24-Business_card_Pro_1_1180-x-660-mm-resize-1180x660.jpg\"},\"downloads\":[\"eps_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Clean and professional design\",\"Print Ready\"],\"created\":\"2013-10-09 12:32:51\",\"created_timestamp\":1381343571,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"ea13227aa28560e7c41a96d3edd1d221\"},{\"id\":\"557cadc8-7de0-45c9-9cd4-07e50a141f38\",\"name\":\"Letter C  Abstract Logo\",\"slug\":\"letter-c-abstract-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/letter-c-abstract-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"GoranJovicic\",\"seller_url\":\"store\\/goran-jovicic-logo-place\",\"tags\":\"logo, Business, Vector, Green, abstract, modern, colorful, color, company, letter, work, hexagon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-368x296-GAsQk.png\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-136x136-fkIel.png\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-557cadc8-7de0-45c9-9cd4-07e50a141f38-260x156-0OJRJ.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-557cadc8-7de0-45c9-9cd4-07e50a141f38-1180x660-dHcgA.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-06-13 17:16:12\",\"created_timestamp\":1434237372,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"3d06542e63fb5194b1f391d886ae18da\"},{\"id\":\"530a244a-a16c-407f-aa0d-328c0a141528\",\"name\":\"Poligon Business Card\",\"slug\":\"poligon-business-card\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/poligon-business-card\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"RafaelOliveira\",\"seller_url\":\"store\\/rafael-oliveira\",\"tags\":\"simple, Corporate, abstract, thin, modern, creative, professional, card, unique, Stationary, brand, identity, landscape, success, mosaic, portrait, biz, squared, polygon\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-Big-mm-resize-368x296-530a27c74831a.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-square-mm-resize-136x136-530a27784fbff.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-530a244a-a16c-407f-aa0d-328c0a141528-thumbnail-mm-resize-260x156-530a279dc1516.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-530a244a-a16c-407f-aa0d-328c0a141528-main-mm-resize-1180x660-530a2779d03c5.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Cards\",\"Fully Editable Files\",\"Print ready\"],\"created\":\"2014-02-23 09:54:57\",\"created_timestamp\":1393174497,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"5deb8151693d0900697faa6ed61a2e46\"},{\"id\":\"53434db1-aaa8-4c4e-b58c-5b0b0a141528\",\"name\":\"Funky Geek Logo\",\"slug\":\"funky-geek-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/funky-geek-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"sopongiro\",\"seller_url\":\"store\\/sopongiro\",\"tags\":\"clean, fresh, Business, man, intelligent, people, stylish, fashion, brand, identity, boy, stylized, glasses, hair, branding, happy, human, style, fashionable, nerd, geeky, geek, hairstyle, nerdy\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/large_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/square_thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/thumbnail-53434db1-aaa8-4c4e-b58c-5b0b0a141528-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/items\\/preview-53434db1-aaa8-4c4e-b58c-5b0b0a141528-1180x660.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Tech, Geek logo\",\"CMYK and RGB\",\"Easy to edit \"],\"created\":\"2014-04-07 19:20:17\",\"created_timestamp\":1396920017,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"2f378683ed9ed828abb987a482651602\"},{\"id\":\"54f9e256-39e4-4d3c-bfe6-3a490a141528\",\"name\":\"Drone Logo\",\"slug\":\"drone-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/drone-logo\",\"sales_count\":7,\"is_service\":false,\"rating\":0,\"seller_name\":\"ManggaDesign\",\"seller_url\":\"store\\/manggadesign\",\"tags\":\"camera, brand, game, fun, symbol, eye, Shutter, drone\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/large_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-368x296-hxxTd.jpg\",\"square_thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/square_thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-136x136-I9Aiy.jpg\",\"thumbnail_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/thumbnail-54f9e256-39e4-4d3c-bfe6-3a490a141528-260x156-T7i8a.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/marketplace-images-production.s3-us-west-2.amazonaws.com\\/vault\\/items\\/preview-54f9e256-39e4-4d3c-bfe6-3a490a141528-1180x660-TNsqI.jpg\"},\"downloads\":[\"eps_graphic\",\"layeredai_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"49.00\"},\"features\":[\"Ai and EPS files\",\"CMYK and RGB color\",\"100% vector | resizable\"],\"created\":\"2015-03-06 10:25:09\",\"created_timestamp\":1425662709,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"9905cf77b7f15c0706fb4f8a72585228\"},{\"id\":\"520d14bd-23f0-49f5-96f4-0bc20a140b26\",\"name\":\"Simple and Clean Business Card - Leonard\",\"slug\":\"simple-and-clean-business-card-leonard\",\"category\":\"business-cards\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/simple-and-clean-business-card-leonard\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"juraj0611\",\"seller_url\":\"store\\/juraj0611\",\"tags\":\"clean, simple, Business, Corporate, professional\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/large_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-368x296-mm-resize-368x296.jpg\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/square_thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-136x136-mm-resize-136x136.jpg\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/thumbnail-520d14bd-23f0-49f5-96f4-0bc20a140b26-260x156-mm-resize-260x156.jpg\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/images\\/preview-520d14bd-23f0-49f5-96f4-0bc20a140b26-view-mm-resize-1180x660.jpg\"},\"downloads\":[\"fonts_graphic\"],\"prices\":{\"single_domain_license\":\"12.00\"},\"features\":[\"Business Card\",\"Accounting\",\"Real Estate\"],\"created\":\"2013-08-15 12:03:22\",\"created_timestamp\":1376589802,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"49daef7037b7f970cb2253198d955391\"},{\"id\":\"519097bd-cc3c-42c2-8c03-64960a140b1e\",\"name\":\"Healthcare logo\",\"slug\":\"healthcare-logo\",\"category\":\"logo\",\"type\":\"graphics\",\"page_url\":\"http:\\/\\/api.mojomarketplace.com\\/item\\/healthcare-logo\",\"sales_count\":6,\"is_service\":false,\"rating\":0,\"seller_name\":\"Comotion\",\"seller_url\":\"\",\"tags\":\"logo, Business\",\"images\":{\"large_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/large_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-LargeThumbnail-mm-resize-368x296.png\",\"square_thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/square_thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-SquareThumbnail-mm-resize-135x135.png\",\"thumbnail_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/thumbnail-519097bd-cc3c-42c2-8c03-64960a140b1e-Thumbnail-mm-resize-260x156.png\",\"screen_shot_urls\":[],\"preview_url\":\"https:\\/\\/s3-us-west-2.amazonaws.com\\/marketplace-images-production\\/items\\/preview-519097bd-cc3c-42c2-8c03-64960a140b1e-Preview-image-mm-resize-1180x660.png\"},\"downloads\":[\"eps_graphic\",\"fonts_graphic\",\"png_graphic\"],\"prices\":{\"single_domain_license\":\"25.00\"},\"features\":[\"Great for medical & healthcare sites\",\"Simple & clean look\",\" Fully editable in vector based programs\"],\"created\":\"2013-05-13 03:46:44\",\"created_timestamp\":1368438404,\"demo_url\":\"\",\"short_description\":\"\",\"logo_bg_color\":\"\",\"change_logs\":[],\"gravatar_hash\":\"afe5b0637a0d37020f47466625d540d2\"}],\"page\":\"1\",\"pageCount\":294,\"records\":5861}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:8:{s:27:\"access-control-allow-origin\";a:1:{i:0;s:1:\"*\";}s:13:\"cache-control\";a:1:{i:0;s:3:\"900\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 31 Jul 2017 23:48:52 GMT\";}s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:10:\"set-cookie\";a:1:{i:0;s:143:\"SESSION=p0o1mvcfg7kt11n9396pn28r36; expires=Sat, 05-Aug-2017 03:48:52 GMT; Max-Age=360000; path=/; domain=mojomarketplace.com; secure; HttpOnly\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:14:\"content-length\";a:1:{i:0;s:5:\"31851\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:88:\"https://api.mojomarketplace.com/api/v2/items?type=graphics&count=20&order=popular&page=1\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:7:\"SESSION\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:7:\"SESSION\";s:5:\"value\";s:26:\"p0o1mvcfg7kt11n9396pn28r36\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:7:\"expires\";i:1501904932;s:7:\"max-age\";i:1501904933;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:19:\"mojomarketplace.com\";s:6:\"secure\";b:1;s:8:\"httponly\";b:1;}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1501544933;s:11:\"last-access\";i:1501544933;s:10:\"persistent\";b:0;s:9:\"host-only\";b:0;}s:14:\"reference_time\";i:1501544933;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}}','no'),(1462,'_transient_timeout_mm_spam_4a988d4b17584d487a1f2eb5636f4a93','1501628620','no'),(1463,'_transient_mm_spam_4a988d4b17584d487a1f2eb5636f4a93','no','no'),(1498,'_transient_timeout_mm_notification','1827007214','no'),(1499,'_transient_mm_notification','O:8:\"stdClass\":2:{s:6:\"status\";s:7:\"success\";s:12:\"notification\";O:8:\"stdClass\":6:{s:2:\"id\";s:36:\"80e050b4-490a-11e6-9055-0a1706783fd3\";s:7:\"message\";s:256:\"<a href=\"http://mojo.live/wplive103\" style=\"float: left; padding-top: 10px;\n\"><div style=\"display: inline-block;\" id=\"postimagediv\"><img src=\"http://api.mojomarketplace.com/img/banners/api/wp-live-api-banner-837x86.png\"></div></a><br style=\"clear:both;\"/>\n\";s:10:\"background\";N;s:7:\"expires\";i:1827007214;s:8:\"category\";O:8:\"stdClass\":2:{s:4:\"name\";s:14:\"WP Live Banner\";s:4:\"slug\";s:14:\"wp-live-banner\";}s:8:\"location\";O:8:\"stdClass\":1:{s:6:\"banner\";a:3:{i:0;s:10:\"themes.php\";i:1;s:14:\"(.*)wp-admin.$\";i:2;s:9:\"index.php\";}}}}','no'),(1521,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:130042881;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(1523,'gravatar_disable_hovercards','0','yes'),(1525,'safecss_add','','yes'),(1526,'verification_services_codes','0','yes'),(1528,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}','yes'),(1530,'open_graph_protocol_site_type','','yes'),(1531,'facebook_admins','a:0:{}','yes'),(1532,'jetpack-twitter-cards-site-tag','','yes'),(1534,'safecss_revision_migrated','0','yes'),(1535,'safecss','','yes'),(1539,'_transient_timeout_mm_icon_hash','1502149723','no'),(1540,'_transient_mm_icon_hash','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4wLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL1RSLzIwMDEvUkVDLVNWRy0yMDAxMDkwNC9EVEQvc3ZnMTAuZHRkIj4NCjxzdmcgdmVyc2lvbj0iMS4wIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0MCA0MCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNDAgNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTMuMSwzMS4zYy0wLjcsMC0xLjUtMC4zLTItMC44Yy0xLjEtMS4xLTEuMS0yLjksMC00TDE3LjksOS42YzEuMS0xLjEsMi45LTEuMSw0LDBjMS4xLDEuMSwxLjEsMi45LDAsNA0KCQlMNS4xLDMwLjRDNC41LDMxLDMuOCwzMS4zLDMuMSwzMS4zeiIvPg0KCTxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xOS43LDMxLjNjLTAuNywwLTEuNS0wLjMtMi0wLjhjLTEuMS0xLjEtMS4xLTIuOSwwLTRMMzQuNCw5LjZjMC45LTAuOSwyLjItMS4yLDMuNC0wLjcNCgkJYzEuMiwwLjUsMS45LDEuNiwxLjksMi45djE2LjZjMCwxLjYtMS4zLDIuOC0yLjgsMi44cy0yLjgtMS4zLTIuOC0yLjhWMTguMUwyMS43LDMwLjRDMjEuMiwzMSwyMC40LDMxLjMsMTkuNywzMS4zeiIvPg0KPC9nPg0KPC9zdmc+DQo=','no'),(1550,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(1555,'_transient_timeout_mm_test','1503964126','no'),(1556,'_transient_mm_test','a:1:{s:3:\"key\";s:4:\"none\";}','no'),(1597,'stats_cache','a:2:{s:32:\"8dcbe3478c57a89bc2a6005bae692c00\";a:1:{i:1501649139;a:0:{}}s:32:\"da542510cee054c477544f3b3209ddf1\";a:1:{i:1501649139;a:0:{}}}','yes'),(1602,'_transient_timeout_feed_99b272eaef9eaa265f30d77863073f26','1501555770','no');
INSERT INTO `wp_xyud_options` VALUES (1603,'_transient_feed_99b272eaef9eaa265f30d77863073f26','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"BuddyPress: BuddyPress 2.9.0 – ‘La Lombarda’\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=267251\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://buddypress.org/2017/07/buddypress-2-9-0-la-lombarda/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6217:\"<p>BuddyPress is happy to announce the immediate availability of it&#8217;s latest release 2.9 &#8216;La Lombarda&#8217; <a href=\"https://en-gb.wordpress.org/plugins/buddypress/2.9.0\">available for download </a> or updatable from your WordPress install plugin directory.</p>\n<p>This release features a range of improvements and updates for both core functionality and templates.</p>\n<p><strong>Amongst a range of improvements and enhancements:</strong></p>\n<ul>\n<li>BP legacy templates are updated for aria labels to bring a vastly improved level of accessibility to layouts.</li>\n<li>In line with current practises anchor title attributes are replaced with an enhanced version usable for all devices, BP Tooltips now provides pop up title requirements on mouse hover or keyboard focus.</li>\n<li>Provide the capability to edit the Group slug: now site admins may edit the group name and the permalink in the dashboard.</li>\n<li>Prevent group invites being sent to users that have already received one.</li>\n<li>Uploading of profile images in mobile devices improved as well as better handling of files with non ASCII characters.</li>\n<li>Email links to private message threads now re-direct logged out users to the login screen, logged in users are directed to message thread.</li>\n<li>New template tag <code>bp_group_link()</code></li>\n<li>Add an order_by parameter for activity queries.</li>\n</ul>\n<p>You can see the full set of changes on our codex page <a href=\"https://codex.buddypress.org/releases/version-2-9-0/\">Version 2.9.0</a></p>\n<p><strong>Comments &amp; feedback</strong><br />\nPlease report any issues to the <a href=\"https://buddypress.org/support/\">Buddypress Support Forum</a> or open a ticket on our <a href=\"https://buddypress.trac.wordpress.org/\">Trac development home</a>.</p>\n<p><strong>Contributors</strong><br />\nBuddypress is a volunteer project and the core team acknowledges the contributions from everyone listed below that helped to bring 2.9 to the community.</p>\n<ul class=\"wp-credits-list\">\n<li><a href=\"https://profiles.wordpress.org/55don/\"> 55don</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/aaronoftomorrow/\"> AaronOfTomorrow</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/allianse/\"> allianse</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/antonioeatgoat/\"> Antonio Mangiacapra (antonioeatgoat)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/benjlipchak/\"> Benj (benjlipchak)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/boonebgorges/\"> Boone B Gorges (boonebgorges)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/bhargavbhandari90/\"> Bunty (bhargavbhandari90)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/sbrajesh/\"> Brajesh Singh (sbrajesh)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/needle/\"> Christian Wach (needle)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/brandonliles/\"> brandonliles</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/danbp/\"> danbp</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dcavins/\"> David Cavins (dcavins)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dkelm/\"> dkelm</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dsar/\"> dsar</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/dsided/\"> dsided</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/henry.wright\"> Henry Wright (henry.wright)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/hnla/\"> Hugo (hnla)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/idofri/\"> Ido Friedlander (idofri)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/uscore713/\"> Jay (uscore713)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/johnbillion/\"> John Blackbourn (johnbillion)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/johnjamesjacoby/\"> John James Jacoby (johnjamesjacoby)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/juanho/\"> Juanho</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/lakrisgubben/\"> lakrisgubben</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/Offereins\"> Laurens Offereins (Offereins)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/lne1030/\"> lne1030</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/lenasterg/\"> lenasterg</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/maniou/\"> Maniou</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/imath/\"> Mathieu Viet (imath)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/mercime/\"> mercime</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/tw2113/\"> Michael Beckwith (tw2113)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/mikegillihan/\"> Mike Gillihan (MikeGillihan)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/milindmore22/\"> Milind More  (milindmore22)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/modemlooper/\"> modemlooper</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/mrjarbenne/\"> mrjarbenne</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/nicolaskulka/\"> Nicolas Kulka (NicolasKulka)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/oelita/\"> Oelita</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/DJPaul/\"> Paul Gibbs (DJPaul)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/pareshradadiya/\"> paresh.radadiya (pareshradadiya)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/r-a-y/\"> r-a-y</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/espellcaste/\"> Renato Alves (espellcaste)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/rianrietveld/\"> Rian Rietveld (rianrietvelde)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/elhardoum/\"> Samuel Elh (elhardoum)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/seventhqueen/\"> seventhqueen</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/slaffik/\"> Slava Abakumov (slaffik)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/netweb/\"> Stephen Edgar (netweb)</a>, </li>\n<li><a href=\"https://profiles.wordpress.org/vishalkakadiya/\"> Vishal Kakadiya (vishalkakadiya)</a>, </li>\n</ul>\n<p>	<strong>La Lombada</strong><br />\nThis release is named after what is thought to the oldest and thus first Italian restaurant in the UK established circa 1922 in Aberdeen.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2017 21:39:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hugo Ashmore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: Dmitry Mayorov Discusses the Challenges of Organizing WordCamp Moscow and the Future of WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=69311\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/dmitry-mayorov-discusses-the-challenges-of-organizing-wordcamp-moscow-and-the-future-of-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2993:\"<p>While at WordCamp Europe I had the opportunity to meet Russian designer and developer <a href=\"https://dmtrmrv.com/\" target=\"_blank\">Dmitry Mayorov</a>, whose themes I had noticed earlier in the year in the <a href=\"https://wordpress.org/themes/author/iamdmitrymayorov/\" target=\"_blank\">WordPress Theme Directory</a>. Mayorov&#8217;s design style is reminiscent of other niche theme developers like Anders Norén and Mike McAlister. He launched his own commercial themes business on <a href=\"https://themepatio.com/\" target=\"_blank\">ThemePatio.com</a> two years ago and his free <a href=\"https://wordpress.org/themes/counter/\" target=\"_blank\">Counter</a> and <a href=\"https://wordpress.org/themes/maker/\" target=\"_blank\">Maker</a> themes collectively have more than 3,000 active installs on WordPress.org.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/04/counter.png?ssl=1\"><img /></a><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/04/maker.png?ssl=1\"><img /></a></p>\n<p>&nbsp; </p>\n<p>Mayorov started taking part in meetups in Russia in 2013. Following WordCamp Moscow 2015, Konstantin Kovshenin asked him if he would take on the role of lead organizer. Mayorov is organizing <a href=\"https://2017.moscow.wordcamp.org/\" target=\"_blank\">WordCamp Moscow 2017</a>, which is scheduled for August 12. In our interview below, he describes a few of the challenges organizers face in uniting the Russian WordPress community that is spread out over such a large land mass.</p>\n<p>Mayorov also discusses how he began creating WordPress themes and how clients&#8217; needs influenced his <a href=\"https://themepatio.com/about/\" target=\"_blank\">theme development philosophy</a>. He aspires to create themes that are fast, content-focused, and minimalistic, without the bloat of hundreds of font options and pre-built site layouts. Mayorov also gave us his predictions for the future of the theme industry.</p>\n<p>&#8220;I think it&#8217;s going to go two directions at the same time,&#8221; Mayorov said. &#8220;I think that page builders and multi-purpose themes wont go anywhere but I also think that niche themes are here to stay as well. Not everybody is looking for a page builder.</p>\n<p>&#8220;I see the tendency that at first when people get introduced to WordPress they discover theme marketplaces. They think, &#8216;Ok this is the top seller, I&#8217;m going to go with this theme.&#8217; For some people it works, and there&#8217;s nothing wrong with that, because sometimes you have challenges where you need to create a website like yesterday&#8230;Once they see that there is another way, they start to research other theme developers and shops, realizing that there are simple themes that work faster and are easier to use, and that you don&#8217;t need to spend two hours trying to create the homepage. They will use those themes as well. These are the themes I&#8217;m trying to build.&#8221;</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2017 19:57:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: Customize Snapshots 0.6.0 Adds the Ability to Name and Merge Changesets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73700\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/customize-snapshots-0-6-0-adds-the-ability-to-name-and-merge-changesets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5069:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/snapshots.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/T80PGTWXHZ\">Freestocks.org</a>\n<p>Contributors to the <a href=\"https://wordpress.org/plugins/customize-snapshots/\" target=\"_blank\">Customize Snapshots</a> feature plugin are steadily building a UI for managing Customizer changesets using the changesets infrastructure added in WordPress 4.7. <a href=\"https://make.xwp.co/2017/07/27/customize-snapshots-0-6-release/\" target=\"_blank\">Version 0.6.0</a> of the plugin was released this month with an expanded interface for managing the complexities of multi-user editing in the Customizer.</p>\n<p>The previous version of Customize Snapshots already supported scheduling but this release introduces a new multi-select save button that allows users to publish, save draft, save as pending, or schedule changes.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/customize-snapshots-multi-select-button.png?ssl=1\"><img /></a></p>\n<p>Version 0.6.0 adds the ability to name changesets, which is especially helpful for site owners who are sorting and previewing changes submitted by multiple editors. The list of changesets has links for previewing on the frontend, editing in the Customizer, or inspecting the changeset&#8217;s content on the edit post screen.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/saved-changesets.png?ssl=1\"><img /></a></p>\n<p>This release introduces the ability to merge multiple changesets into a single changeset, which users can then preview and publish all at once.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/merge-changesets.png?ssl=1\"><img /></a></p>\n<p>Contributors have not yet worked out how this feature will handle conflicting changes submitted by multiple users. It currently accepts whatever change was made more recently, but this isn&#8217;t ideal in certain situations. <a href=\"https://github.com/xwp/wp-customize-snapshots/issues?q=is%3Aissue%20is%3Aopen%20conflict\" target=\"_blank\">Conflict resolution</a> is on the team&#8217;s radar to address in future iterations of the plugin and they are discussing several different approaches.</p>\n<p>&#8220;Merging changesets would definitely lie in the realm of a power user feature,&#8221; Customize component co-maintainer Weston Ruter said. &#8220;It would probably not be proposed for core. Nevertheless, the existence of the feature is a demonstration of the kinds of things that can be possible when working with changesets.&#8221;</p>\n<p>In addition to co-leading WordPress&#8217; Customizer team, Ruter is also the CTO at XWP, where several of the agency&#8217;s clients are actively using the Customize Snapshots plugin. News Corp Australia and Beachbody are two companies that have invested in the plugin&#8217;s development and are successfully using it at scale on their network of sites.</p>\n<p>&#8220;When paired with the Customize Posts plugin, it gets really powerful because you can edit multiple posts and pages, along with any of their postmeta, while also editing widgets, nav menus, and any other settings, and all of these changes are all bundled together in a single changeset,&#8221; Ruter said. &#8220;This changeset can then be previewed on the frontend, including by sharing the URL with an unauthenticated user (like a 3rd party who can&#8217;t even access the Customizer), and they can click around the site with all of the customizations applied as if they had been published.&#8221;</p>\n<p>Ruter said the Customizer team isn&#8217;t currently targeting a WordPress release for getting these new UI additions added to core but rather view the progress as &#8220;prototypes for what could be merged into core, bit by bit.&#8221; He identified several tickets that the plugin provides prototype interfaces for:</p>\n<ul>\n<li><a href=\"https://core.trac.wordpress.org/ticket/28721\" target=\"_blank\">#28721</a>: Scheduled changes for the customizer</li>\n<li><a href=\"https://core.trac.wordpress.org/ticket/31089\" target=\"_blank\">#31089</a>: Add revisions and statuses for changesets</li>\n<li><a href=\"https://core.trac.wordpress.org/ticket/21666\" target=\"_blank\">#21666</a>: Customizer reset/undo/revert</li>\n<li><a href=\"https://core.trac.wordpress.org/ticket/39896\" target=\"_blank\">#39896</a>: Customizer: Allow users to Draft changes before Publishing</li>\n</ul>\n<p>&#8220;Core development is still very much focused on the editor — Gutenberg — so the far-reaching Customizer changes are not being emphasized yet,&#8221; Ruter said. Meanwhile progress continues on the Customize Snapshots plugin, which was completely rewritten for the 0.6.0 release after most of its infrastructure was merged into WordPress 4.7. Ruter&#8217;s team is not sure which features will eventually land in core, but the various Customizer feature plugins give users an idea of the power of the changesets infrastructure that is already included in WordPress.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2017 22:58:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: .blog Passes 100,000 Registrations, 66.5% of Purchased Domains are in Use\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73673\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/blog-passes-100000-registrations-66-5-of-purchased-domains-are-in-use\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5334:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/blog.png?ssl=1\"><img /></a></p>\n<p>The .blog domain extension, managed by Automattic subsidiary Knock Knock WHOIS There (KKWT), opened registration to the public in November 2016 and has just <a href=\"https://my.blog/2017/07/26/100000-blogs/\" target=\"_blank\">passed the 100,000 registration milestone</a>. The extension is averaging 300 new .blog domains registered per day and is quickly gaining popularity among new generic TLDs. According to the most recent stats available at nTLDStats, <a href=\"https://ntldstats.com/tld/blog\" target=\"_blank\">.blog registrations</a> have climbed steadily and predictably every month since its public launch.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/blog-registrations.png?ssl=1\"><img /></a>.blog registrations according to ntldstats.com\n<p>Automattic, which operates independently from KKWT as a registrar, currently has the largest market share of .blog domain registrars at 62.8%. Other smaller pieces of the pie continue to see increasing numbers of registrations. </p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/registrar-market-share-blog.png?ssl=1\"><img /></a></p>\n<p>&#8220;When a .blog domain is sold through any .blog registrar, it operates like all other top-level domains (TLDs),&#8221; .blog representative Erica Varlese said. &#8220;This means that the registry, in this case Knock Knock WHOIS There, receives the wholesale cost, ICANN receives their fees, and the registrar retains the rest.&#8221;</p>\n<p>The .blog team has started experimenting with different marketing programs to promote the extension among registrars and launched its first campaigns last month.</p>\n<p>&#8220;These programs are available to any .blog accredited registrar and, through participation, allows them to provide .blog domains to their customers at a discounted rate,&#8221; Varlese said. &#8220;It is designed to test price elasticity and various end-user marketing techniques that best fit each registrars&#8217; unique customer-base.&#8221;</p>\n<p>Registration for .blog domains is fully integrated into WordPress.com&#8217;s domain offerings, but Varlese said that Knock Knock WHOIS There, as a separate company, is not informed of the specific details of their domain roadmap. The subsidiary also does not track how many of the .blog domains are running WordPress, as the extension is platform agnostic and in use across many different blogging services. </p>\n<p>So far .blog domain customers include both individuals and businesses, including some e-commerce and community sites. Varlese said the main benefit to acquiring a .blog domain is that customers are more likely to get and use a name they always wanted (example.blog), versus settling for a more complicated variation, such as blog.example.com.</p>\n<p>&#8220;Using a blog domain is also a great way to embrace engagement with your community,&#8221; Varlese said. &#8220;In addition to individual and personal bloggers, we also see larger brands using blogs to engage with their customers. Visiting <a href=\"http://stackoverflow.blog\" target=\"_blank\">stackoverflow.blog</a>, for example, is intuitive. The domain lets me know right away what type of content and interaction to expect versus what my expectations would be when prompted to visit stackoverflow.com. Both are equally important and both add value to the customer’s online experience.&#8221;</p>\n<p>Many people purchase a domain just to sit on it for the right time to use it or sell. Greater usage of .blog domains promotes visibility on the web, which is why registrars place value on how many have launched websites using the extension. </p>\n<p>&#8220;Our goal is steady, long-term growth while continuing to increase our usage rates,&#8221; Varlese said. &#8220;We want every .blog domain to resolve to a unique content site or blog. Usage is an important metric for us. It positively contributes to help the new TLD marketplace thrive and grow organically. It is at the forefront of every decision we make, including marketing and rebate programs for our registrars, as well as our dotblogger program, which gives online influencers easy access to all .blog domains, including premium and reserved domains.&#8221;</p>\n<p>The .blog team&#8217;s 100,000 registrations milestone post cites usage stats from Pandalytics, a domains data service, that are not publicly available. </p>\n<p>&#8220;66.5% of .blog domains have a unique website associated with them, compared to an average of 39.3% for both new and legacy TLDs, according to recent research by Daniel Ruzzini-Mejia (co-founder and CSO of DomainsBot Srl, the company behind big-data analysis platform Pandalytics),&#8221; Varlese said. &#8220;Ruzzini-Mejia also found more than 250 .blog domains that use an eCommerce platform.&#8221; </p>\n<p>This is an interesting find in an era where many have claimed that blogs are dead. If the indie web proponents have their way, blogs may have another renaissance yet, and could become the anchors of commerce and identity online. The healthy usage numbers the .blog extension has posted in its first year are a strong indicator that the concept of blogging still holds an important place on the web. </p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2017 18:09:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Adobe to Discontinue Flash Support and Updates in 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/adobe-to-discontinue-flash-support-and-updates-in-2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3567:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/adobe-flash.png?ssl=1\"><img /></a></p>\n<p>Adobe <a href=\"https://blogs.adobe.com/conversations/2017/07/adobe-flash-update.html\" target=\"_blank\">announced</a> today that it will discontinue Flash support and updates at the end of 2020. Flash played an important part in the history of the web, inspiring many of the open standards and formats that the web has moved on to embrace.</p>\n<blockquote><p>Given this progress, and in collaboration with several of our technology partners – including Apple, Facebook, Google, Microsoft and Mozilla – Adobe is planning to end-of-life Flash. Specifically, we will stop updating and distributing the Flash Player at the end of 2020 and encourage content creators to migrate any existing Flash content to these new open formats.</p></blockquote>\n<p>Last year most major browsers moved to block Flash, requiring users to enable it manually for sites where they wish to view Flash content. Microsoft, Google, and Mozilla were on deck today with announcements of their own regarding future Flash support. Firefox is the most aggressive with its <a href=\"https://blog.mozilla.org/futurereleases/2017/07/25/firefox-roadmap-flash-end-life/\" target=\"_blank\">plan to disable Flash for most users in 2019</a>. Only those running an Extended Support Release will be able to continue using it through the end of 2020 and no version of Firefox will load the plugin after Adobe discontinues security patches.</p>\n<p><a href=\"https://www.blog.google/products/chrome/saying-goodbye-flash-chrome/\" target=\"_blank\">Chrome is also phasing out support for Flash</a> and plans to remove it completely from the browser toward the end of 2020.</p>\n<p>&#8220;Three years ago, 80 percent of desktop Chrome users visited a site with Flash each day,&#8221; Google Chrome Product Manager Anthony Laforge said. &#8220;Today usage is only 17 percent and continues to decline.</p>\n<p>&#8220;This trend reveals that sites are migrating to open web technologies, which are faster and more power-efficient than Flash. They’re also more secure, so you can be safer while shopping, banking, or reading sensitive documents.&#8221;</p>\n<p>The Microsoft Edge team also <a href=\"https://blogs.windows.com/msedgedev/2017/07/25/flash-on-windows-timeline/#QKXFIeE23ZSoZLlh.97\" target=\"_blank\">announced</a> its plans to phase out Flash from both Microsoft Edge and Internet Explorer with complete removal from all supported versions of Microsoft Windows by the end of 2020.</p>\n<p>Although <a href=\"http://blog.kongregate.com/html5-is-here/\" target=\"_blank\">HTML5 adoption is growing among game developers</a>, Adobe&#8217;s announcement means major changes for segments of the the gaming, education, and video industries that have not yet migrated to newer, open formats. This news will also make obsolete dozens of WordPress <a href=\"https://wordpress.org/plugins/search/flash/\" target=\"_blank\">plugins that were created to upload and display Flash content</a>.</p>\n<p>Adobe&#8217;s announcement was met with thanks and &#8220;good riddance,&#8221; with many calling for an even speedier timeline. Many are also concerned about all the orphaned content and .swf games on the web that Flash&#8217;s disappearance will create. Adobe has received many requests on Twitter for the company to consider open sourcing the old Flash Player codebase for the sake of compatibility and archiving content. Adobe has not officially replied to any of these requests.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2017 04:01:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"HeroPress: Random Diary Chapters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://heropress.com/essays/random-diary-chapters/?utm_source=rss&utm_medium=rss&utm_campaign=random-diary-chapters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7701:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/072617-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress combines people together from all over the world. Maybe WordPress is important after all.\" /><blockquote><p>There goes my hero<br />\nWatch him as he goes<br />\nThere goes my hero<br />\nHe&#8217;s ordinary</p></blockquote>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>I have no idea what I’m going to write about. How about people? Ordinary people are heroes to me. People who are willing to help one another. People just like you and me.</p>\n<p>Well, at least like you <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> &#8211; if you’re for some reason reading my diary.</p>\n<h2>Who’s teaching who</h2>\n<p>I still remember when I build my first website with table layouts while studying math in the University of Jyväskylä. Those were the days! But it doesn’t feel like yesterday anymore. More like day before.</p>\n<p>Nevertheless being a math teacher has been the perfect choice for me. It’s been fun, challenging, and rewarding. I’ve probably learnt lot more from students than they have from me.</p>\n<p>Heck, they even got me into WordPress when I was taking my ex-students short film course. Was it 2008? Something like that. We needed a website for our short film and had only 1-2 days. Students gave me link to WordPress.com and I was sold. Getting site up and running was easy and fast.</p>\n<p>“Well come here and do it yourself!!” &#8211; drama class student shouted.</p>\n<p>That’s another good lesson I’ve learnt.</p>\n<blockquote><p>It’s so easy to give negative feedback (don’t do it like that) without doing anything yourself or giving constructive feedback.</p></blockquote>\n<p>Oh boy I still feel ashamed when I judged a book by it’s cover. This time the book cover was a blonde girl asking weird questions with high voice. I was a prison of my prejudice and instantly assumed she must be bad at math. How wrong was I. She was brilliant.</p>\n<p>At least the prison gate is now open if I just understand to walk out.</p>\n<h2>Who am I</h2>\n<p>Sometimes I wonder what other people think of me? Do they think I’m open minded teacher, or front-developer who cares about accessibility. But does any of that matter? Job title really doesn’t tell anything who I am. Or anybody else.</p>\n<p>But who am I? I’m not sure how to define me. I’m no dad or husband. I do have several good traits but there are also demons inside me. Lack of empathy is one of them. And that comes down to this:</p>\n<p>In the end <strong>I’m a selfish asshole</strong>.</p>\n<p>It’s okay to be selfish from time to time but it’s not okay to let people down big time when they need me most. Being an ordinary human being is not one of my strengths but I’ll promise to work on it.</p>\n<h2>Friends will be friends</h2>\n<p>I consider myself lucky. I have lovely parents and two crazy big brothers. And over the years I have made friendships that last forever.</p>\n<p>I hope everybody have a friend who is like a bridge between other friends. Someone who is always organizing something fun: bowling, music gigs, dinners, sports. Someone who is always nice to others and would never hurt a fly.</p>\n<p>I had a friend like that.</p>\n<p>But as a return I couldn’t help him enough. Shadows of life had taken over him. He could not see the light anymore. He died by suicide before christmas 2015.</p>\n<p>Now he can’t fall anymore. He will always be our beloved one and we’ll miss him more than words can express. So many songs reflects to memories we have. For example this Finnish song that I heard exactly one year after his death. (<a href=\"http://lyricstranslate.com/en/rakastettu-beloved.html\">Lyrics in english</a>).</p>\n<div class=\"jetpack-video-wrapper\"></div>\n<p>Why is it so much easier to talk about other problems but not your own. Why is it so hard to ask help when you really need it.</p>\n<h2>Life goes on</h2>\n<p>Do I need to say anything. No I don&#8217;t.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/summer-of-2017-peaceful-mind-after-sauna.jpg\"><img class=\"size-full wp-image-1995\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/summer-of-2017-peaceful-mind-after-sauna.jpg\" alt=\"View of the water form the shore.\" width=\"1000\" height=\"750\" /></a>Summer 2017. Peaceful state of mind after a sauna.\n<p>&nbsp;</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/my-dear-friends-rock.jpg\"><img class=\"size-full wp-image-1996\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/my-dear-friends-rock.jpg\" alt=\"Sami and 2 friends\" width=\"1000\" height=\"751\" /></a>My dear friends rock!\n<p>&nbsp;</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/friends-will-be-friends.jpg\"><img class=\"size-full wp-image-1997\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/friends-will-be-friends.jpg\" alt=\"Sami and two friends\" width=\"1000\" height=\"750\" /></a>Friends will be friends forever.\n<h2>WordPress is not important</h2>\n<p>WordPress is not important. People behind it are, they have feelings. I wish more people would remember that when commenting on blog posts, Slack, or other online tools with shitty attitudes.</p>\n<blockquote><p>Being nice and constructive goes a long way.</p></blockquote>\n<p>At the same time it’s amazing to notice how WordPress combines people together from all over the world. In WordCamps and meetups I have found new friends that really matter. That feels good.</p>\n<p>Maybe WordPress is important after all.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Random Diary Chapters\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Random%20Diary%20Chapters&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Frandom-diary-chapters%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Random Diary Chapters\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Frandom-diary-chapters%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Frandom-diary-chapters%2F&title=Random+Diary+Chapters\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Random Diary Chapters\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/random-diary-chapters/&media=https://heropress.com/wp-content/uploads/2017/07/072617-150x150.jpg&description=Random Diary Chapters\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Random Diary Chapters\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/random-diary-chapters/\" title=\"Random Diary Chapters\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/random-diary-chapters/\">Random Diary Chapters</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2017 00:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sami Keijonen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"WPTavern: SiteLock Acquires Patchman’s Malware and Vulnerability Detection Technology, Expands WordPress Customer Base to 4 Million\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73626\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"https://wptavern.com/sitelock-acquires-patchmans-malware-and-vulnerability-detection-technology-expands-wordpress-customer-base-to-4-million\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4517:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/sitelock-logo.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.sitelock.com/\" target=\"_blank\">SiteLock</a>, a website security company, has <a href=\"https://www.sitelock.com/pr/extends-web-security-leadership-patchman-acquisition\" target=\"_blank\">acquired</a> <a href=\"http://patchman.co/\" target=\"_blank\">Patchman</a>, a Dutch security startup that offers automated vulnerability patching and malware removal for hosting providers. Prior to the acquisition SiteLock protected 6 million sites, with 2.2 million of them running on WordPress. The addition of Patchman extends SiteLock&#8217;s customer base to 12 million sites and more than 4 million of those are powered by WordPress.</p>\n<p>Patchman detects vulnerabilities in <a href=\"https://patchman.zendesk.com/hc/en-us/articles/200236661-Which-applications-does-Patchman-scan-and-fix-\" target=\"_blank\">a wide range of popular applications</a> and quarantines and patches threats automatically. The quarantine feature neutralizes malicious files by removing them from public access. Patchman supports detection and patching for WordPress 3.x and later.</p>\n<p>Historically, the service has not included patches for plugins but it has applied them on a case-by-case basis for high impact vulnerabilities, including a few found in WP Super Cache, MailPoet, and the open source Genericons font project. The Patchman dashboard allows users to easily track files where vulnerabilities have been detected, view status, and revert patches if necessary.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/patchman-dashboard.jpg?ssl=1\"><img /></a></p>\n<p>Patchman&#8217;s single focus on hosting providers gives SiteLock the opportunity to offer more options to its hosting partners. With the acquisition, the company is now partering with more than 500 hosting providers, including BlueHost, 1&amp;1, Web.com, InMotion, Melbourne IT, GMO (NTT), and many others.</p>\n<p>&#8220;During our early talks, Patchman was not looking to be acquired and SiteLock wasn’t looking to acquire,&#8221; SiteLock President Neill Feather said. After meeting at the WorldHostingDays show in Rust, Germany in late March this year and at another show in Los Angeles, the companies found they shared similar goals and would be in a better position working together.</p>\n<p>&#8220;It truly was a matter of 1+1=3,&#8221; Feather said. &#8220;Traditionally, SiteLock is very strong in detecting and removing malware for end users. Patchman offers a service tailored specifically to hosting providers and aimed at fixing the security vulnerabilities that hackers exploit to infect websites with malware. By working together we are able to address a wider market and offer a broader solution to the problems that we solve for our customers. We can now attack the problem from multiple angles.&#8221;</p>\n<p>Patchman&#8217;s technology will compliment SiteLock&#8217;s existing security features but the company has not yet decided how it will be incorporated into its security plans for customers. Feather said the team is still jointly building out its future roadmap to give hosts and end customers access to a wider range of products. They are also considering making Patchman&#8217;s detection technology compatible with more products in the WordPress ecosystem.</p>\n<p>Feather could not disclose any specifics on revenue generated by <a href=\"https://wpdistrict.sitelock.com/products/\" target=\"_blank\">SiteLock&#8217;s WordPress security products</a> but approximately 30% of its newly expanded customer base is running on WordPress.</p>\n<p>&#8220;What we can say is that we’re heavily invested in the WordPress community and plan on continuing to do so,&#8221; Feather said.</p>\n<p>&#8220;I&#8217;m excited that the increased number of sites we now protect across multiple platforms means we&#8217;ll be able to identify malware and malicious trends more efficiently than we&#8217;ve been able to already, and that&#8217;s good for every end user,&#8221; SiteLock&#8217;s WordPress Evangelist Adam Warner said. &#8220;Secondly, although we already have solutions for our partners, Patchman allows web hosts to offer increased security options for advanced users of their platforms. Being a WordPress guy, I&#8217;m excited about the possibility we now have to extend the capabilities of Patchman to plugins and other WordPress-specific software.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2017 18:46:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Watch WordCamp Varna Wapuus Get Designed in Real Time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/watch-wordcamp-varna-wapuus-get-designed-in-real-time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1427:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/wordcamp-varna-wapuus.jpg?ssl=1\"><img /></a></p>\n<p>The very first <a href=\"https://2017.varna.wordcamp.org/\" target=\"_blank\">WordCamp Varna</a> will be held September 2-3 at the <a href=\"https://www.ue-varna.bg/en/\" target=\"_blank\">University of Economics</a>. Varna is a beautiful city in Bulgaria on the Black Sea and a popular spot for summer holidays. It is the first Bulgarian WordCamp to be held outside of Sofia.</p>\n<p><a href=\"https://2017.varna.wordcamp.org/tickets/\" target=\"_blank\">Tickets are on sale</a> for EUR 10 (BGN 20) and include  all the sessions, lunch, a #WCVAR 2017 T-shirt, and a few drinks at the after party. There are 102 remaining for the conference and 14 remaining tickets for the kids&#8217; workshop (ages 7-14).</p>\n<p>The location naturally inspired a maritime sticker pack collection for attendees, featuring four new wapuu designs. The collection was designed by the vector graphic illustrators at <a href=\"https://graphicmama.com/\" target=\"_blank\">GraphicMama</a>, a design partner for the WordCamp. Ever wonder how much effort goes into designing all the individualized creations in the <a href=\"http://jawordpressorg.github.io/wapuu/\" target=\"_blank\">world of wapuus</a>? Check out the video below to see how WordCamp Varna&#8217;s wapuu designs were brought to life.</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2017 04:14:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: New Aztec Editor for WordPress Mobile Apps Now in Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73587\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/new-aztec-editor-for-wordpress-mobile-apps-now-in-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3390:\"<p>WordPress&#8217; iOS and Android apps will soon be getting a new editor. The appearance of the new editor, codenamed “Aztec,&#8221; is very similar to the old one but is light years ahead of its predecessor in both speed and reliability. Aaron Douglas, iOS engineer at Automattic, announced the <a href=\"https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/\" target=\"_blank\">open beta for Aztec</a> today with a side-by-side comparison video of the old and new editors. A copy and paste test with 500 paragraphs on iPhone 6s demonstrates Aztec&#8217;s instantaneous response while the old editor takes two-minutes to render the text.</p>\n<p></p>\n<p>In addition to better speed and performance, Aztec&#8217;s use of OS-provided text controls makes it possible to offer full support for accessibility technologies like iOS’ VoiceOver and Android’s TalkBack. It also adds the ability to draft using dictation.</p>\n<p>Aztec introduces a new undo/redo tool at the top of the screen as a quick option for fixing mistakes. It also provides a simpler, more reliable experience using spell check.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/aztec-testing.png?ssl=1\"><img /></a></p>\n<p>The Aztec beta is available to all users in the latest updates of the app (8.0 for iOS, 7.8 for Android). After opening the app you will see a popup for enabling the new editor. It can also be toggled on/off by going to Me > App Settings and selecting &#8220;Set the Editor Type.&#8221;</p>\n<p>The mobile team has made it easy to test and give feedback without leaving the app. Tapping the &#8220;beta&#8221; button at the top of the editor will open a &#8220;What&#8217;s New in the Beta&#8221; page with a bug button at the top that you can use to report bugs and send feedback. At the moment, the beta does not support shortcodes or video and WordPress gallery features. Keep in mind that it&#8217;s not 100% ready for use and heavy users of the mobile apps are likely to discover glitches.</p>\n<p>Aztec is open source (GPL 2.0) and packaged as a rich-text editor component in its own GitHub repository (<a href=\"https://github.com/wordpress-mobile/WordPress-Aztec-iOS\" target=\"_blank\">iOS</a> | <a href=\"https://github.com/wordpress-mobile/WordPress-Aztec-Android\" target=\"_blank\">Android</a>) so that developers can use it in their own applications and contribute code back to the project.</p>\n<p>&#8220;Quite literally, there is nothing like this out there – every editor we could find uses a web view or has very limited support for any HTML,&#8221; Douglas said. &#8220;Our hope is the Aztec editor is seen as a component that can be used by many iOS and Android apps to provide a rich HTML editing experience. We feel that we could garner a bigger contributor base to the mobile apps simply because this component exists, is free and open, and is super awesome.&#8221;</p>\n<p>The project is a few months behind the <a href=\"https://make.wordpress.org/mobile/2017/04/08/introducing-the-aztec-mobile-editors/\" target=\"_blank\">schedule published in April</a>, which had open beta targeted for May and the full release for the end of this month. Depending on how well the beta testing period goes, users could see the new Aztec editor included in the mobile apps within the next few months.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2017 22:59:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: Hamilton: A Free WordPress Portfolio Theme for Photographers, Illustrators, and Designers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72881\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/hamilton-a-free-wordpress-portfolio-theme-for-photographers-illustrators-and-designers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3779:\"<p><a href=\"https://wordpress.org/themes/hamilton/\" target=\"_blank\">Hamilton</a> is a new portfolio theme released by Swedish designer and developer <a href=\"http://www.andersnoren.se/\" target=\"_blank\">Anders Norén</a> during his summer vacation. It was created for photographers, illustrators, designers, and image-heavy blogs. The theme displays portfolio items in a minimal, masonry-style grid with an optional tagline on the front page.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/hamilton-white-black-1.jpg?ssl=1\"><img /></a></p>\n<p>&#8220;Hamilton has a pretty simple design at its core, so when it was more or less finished, I decided to add a couple of fun theme options to make it more customizable,&#8221; Norén said. &#8220;The main one is the Dark Mode. With a click of the mouse in the WordPress Customizer, you can change Hamilton from dark text on a white background to white text on a dark background.&#8221;</p>\n<p>The Customizer also includes a few other helpful options for portfolio sites:</p>\n<ul>\n<li>Set a custom background image or color</li>\n<li>Replace the navigation toggle in the header with the Primary Menu on desktop</li>\n<li>Change two-column default post grid display to three columns on desktop</li>\n<li>Display titles in the post previews</li>\n<li>Add a title to front page when it&#8217;s set to display latest posts</li>\n</ul>\n<p>The theme is beautifully responsive to various devices and screen sizes. Norén&#8217;s typography choices are clean and readable on mobile.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/hamilton-on-mobile-e1500914561475.png?ssl=1\"><img /></a></p>\n<p>Hamilton includes <a href=\"http://andersnoren.se/themes/hamilton/offscreen-magazine-collection/\" target=\"_blank\">styles for the default WordPress image gallery</a> with more interesting options available to create complex galleries stacked with different numbers of columns. It also supports Jetpack&#8217;s Infinite Scroll module and has styles for blockquotes, pullquotes, and left/right/center aligned media.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/hamilton-pullquotes.png?ssl=1\"><img /></a></p>\n<p>One of the most unique features of the theme is the <a href=\"http://andersnoren.se/themes/hamilton/resume/\" target=\"_blank\">Resume template</a>. It gives users the option to add a simple resume to their portfolios, without having to add a plugin. The template uses basic HTML for formatting with h1 header tags, horizontal rules, and unordered lists. The template could use a bit more documentation, since not all users are familiar with HTML, but it&#8217;s a useful addition for simple portfolio sites.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/resume-template.png?ssl=1\"><img /></a></p>\n<p>Check out a <a href=\"http://andersnoren.se/themes/hamilton/\" target=\"_blank\">live demo</a> along with the <a href=\"http://andersnoren.se/themes/hamilton/style-guide/\" target=\"_blank\">style guide</a> to see the theme in action.</p>\n<p><a href=\"https://wordpress.org/themes/hamilton/\" target=\"_blank\">Hamilton</a> is Anders Norén&#8217;s 15th theme approved for the WordPress Theme Directory. When he submitted it to the Theme Review Team, he anticipated that it would take a month or two for it to get through the review process. His previously submitted theme, Davis, took approximately nine months to make it through the queue. He was surprised to find that Hamilton <a href=\"https://twitter.com/andersnoren/status/887559567135186944\" target=\"_blank\">went through the process in under a month</a>. After less than a week on WordPress.org, the theme has already been downloaded more than 200 times.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2017 19:27:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: Members 2.0 Adds Capability Registration System, Introduces New Settings Screen for Add-Ons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73446\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/members-2-0-adds-capability-registration-system-introduces-new-settings-screen-for-add-ons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6254:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/members.png?ssl=1\"><img /></a></p>\n<p>Eight years ago, Justin Tadlock moved back home to Alabama and was living in the spare bedroom of his grandparents&#8217; house with nothing more than a laptop and a suitcase. Over the course of a few months he started going deeper into learning about writing WordPress plugins and produced <a href=\"https://wordpress.org/plugins/members/\" target=\"_blank\">Members</a>, a role management plugin for WordPress. The first major overhaul of the plugin came in 2015 with version 1.0&#8217;s expansion of features and a new UI for editing roles.</p>\n<p>Members has built up a user base of more than 100,000 active installs since it first <a href=\"http://justintadlock.com/archives/2009/09/17/members-wordpress-plugin\" target=\"_blank\">launched in 2009</a>. Tadlock estimates that over the last couple years, 40% of <a href=\"https://themehybrid.com/\" target=\"_blank\">Theme Hybrid</a> customers are primarily there for support and small tweaks to the Members plugin. He decided it was time to begin investing more in the plugin and its community.</p>\n<p>Tadlock released <a href=\"https://themehybrid.com/weblog/members-version-2-0\" target=\"_blank\">Members 2.0</a> this week. The plugin manages core WordPress capabilities but 2.0 adds the ability for plugins to register custom capabilities. The labels for the capabilities can be internationalized so users can manage the plugin in their own languages in human-readable form.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-human-caps.png?ssl=1\"><img /></a></p>\n<p>This release also adds the ability to use the WordPress editor for writing custom post error messages, making it easy to direct visitors to registration or other important information regarding access to the content.</p>\n<p>Members 2.0 lets users add multiple roles when creating a new user from the Add User screen. It also introduces the ability to bulk add or remove roles from users, even when multiple roles have been enabled.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-bulk-users.png?ssl=1\"><img /></a></p>\n<p>This version of the plugin serves some of its data using the WP REST API and a new setting was added to authenticate users who are accessing the REST API endpoints. This protects content from being exposed on sites that have the &#8220;private site&#8221; setting enabled. Tadlock plans to write a tutorial about what he has learned in integrating the REST API with the plugin.</p>\n<h3>Tadlock Aims to Monetize Members with Add-Ons, Renews Efforts to Develop a Community of Add-On Developers</h3>\n<p>Members 2.0 introduces a new Settings screen that ties in with Tadlock&#8217;s future plans to monetize the plugin. The new screen includes a view for add-ons. Tadlock has two add-ons available currently and has written an API for third-party developers to register their own add-ons to be visible on this screen.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/members-2-addons.png?ssl=1\"><img /></a></p>\n<p>&#8220;The plan is to create some small add-on plugins,&#8221; Tadlock said. &#8220;There&#8217;s already two:  <a href=\"https://themehybrid.com/plugins/members-role-levels\" target=\"_blank\">Members &#8211; Role Levels</a>, which is paid, and <a href=\"https://themehybrid.com/plugins/members-role-hierarchy\" target=\"_blank\">Members &#8211; Role Hierarchy</a>, which I was hired to build and was allowed to release to the community for free. I&#8217;ve got a few small plugins like those in mind that&#8217;ll be in a lower price range.&#8221;</p>\n<p>Tadlock also plans to release a more robust version of the &#8220;Content Permissions&#8221; feature as another add-on. He has received numerous feature requests from users over the years about what they would like to see in this plugin. The add-on will offer a variety of different ways to show/hide content.</p>\n<p>I asked Tadlock if he has considered building payment gateway add-ons so users can charge for memberships. He said the idea is on the table.</p>\n<p>&#8220;I&#8217;m not sure if I&#8217;m going to build those or someone else,&#8221; Tadlock said. &#8220;I&#8217;ve mentioned it to some other developers. It would be a good place to start building add-ons.&#8221; His current setup uses Easy Digital Downloads with a couple of plugins to bridge it with Members and ThemeHybrid.com.</p>\n<p>A plugin like Members has the potential to have a large, third-party ecosystem of plugins for payments and additional features, but Tadlock was focused on other projects during the first few years after it launched.</p>\n<p>&#8220;I haven&#8217;t actively pursued the add-on angle,&#8221; Tadlock said. &#8220;Instead, I focused more on themes during most of that time. Now, I&#8217;m focusing more on plugin development. It&#8217;s my fault for not nurturing a community of add-on developers, which is something I&#8217;m trying to do more of now.&#8221;</p>\n<p>Tadlock said many of the developers he knows are working with Members because they like that it gives them a solid foundation to build on for client work. He hopes to persuade some of them to release some of that code back as commercial add-ons or free plugins in the WordPress plugin directory.</p>\n<p>Since launching the plugin eight years ago, Tadlock has aimed to make it behave as if it were a natural part of WordPress. At its core, Members is a role and capability management plugin and not a one-size-fits all membership plugin.</p>\n<p>&#8220;It&#8217;s more or less a UI over what you could do with code already,&#8221; Tadlock said. &#8220;Most of all, it tries not to get in your way. Every membership site has its own unique needs. It&#8217;s tough building something that suits everyone.  That&#8217;s why I&#8217;d rather have that foundation of Members just exposing the roles/caps system with third-party add-ons that suit various users&#8217; needs.</p>\n<p>&#8220;Other membership plugins often try to please everyone or pigeon-hole everything into their custom system. I like more to have a bit more flexibility without the bloat.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2017 21:37:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WordPress 4.8.1 Adds a Dedicated Custom HTML Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73470\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2681:\"<p>When WordPress <a href=\"https://wptavern.com/wordpress-4-8-evans-released-featuring-nearby-wordpress-events-new-media-widgets-and-link-boundaries\">4.8 was released</a> last month, it introduced TinyMCE functionality to the Text widget. Unfortunately, this <a href=\"https://wordpress.org/support/topic/how-to-disable-visual-editor-in-the-text-widget/\">caused issues</a> for those who use Custom HTML as the Visual editor often strips out portions of the code.</p>\n<p>WordPress <a href=\"https://wordpress.org/download/release-archive/#beta-and-rc\">4.8.1 Beta 1</a> is available for testing and addresses this problem by including a dedicated Custom HTML widget.</p>\n<p>&#8220;For advanced users or any user who needs to paste in HTML snippets, there is now a dedicated &#8216;Custom HTML&#8217; widget that is specifically for adding arbitrary HTML to your sidebar,&#8221; Weston Ruter, said.</p>\n<p>&#8220;This widget will retain the application of the <code>widget_text</code> filters, in addition to having a new dedicated <code>widget_custom_html_content</code> filter.</p>\n<p>&#8220;For use cases that involve adding content to your sidebar, the Text widget will continue to feature the same Visual editing interface that the post editor has (TinyMCE).&#8221;</p>\n<p>Users who access Text widgets that have Custom HTML in WordPress 4.8.1, will see a note at the top of the widget that suggests using the Custom HTML widget.</p>\n<p><img /></p>\n<p>If a user pastes or types HTML into a text widget with the Visual editor active, WordPress displays an Admin Pointer suggesting that they use the Text tab instead or use the Custom HTML widget.</p>\n<img />Text Widget Admin Pointer\n<p>The Custom HTML widget works similar to the Text widget in WordPress 4.7 and below.</p>\n<img />Custom HTML Widget\n<p>Sites that have existing Text widgets containing custom HTML that may be modified by the Visual editor, are opened in a legacy mode.</p>\n<p>Legacy mode retains the old Text widget interface, including the checkbox on whether or not to automatically add paragraphs. This change prevents the Visual editor from altering code.</p>\n<p>Ruter says the ideal way to test these improvements is to install it on a staging site that has Text widgets containing HTML and are known to be problematic in WordPress 4.8. After upgrading, check to see if the widgets open in legacy mode.</p>\n<p>WordPress 4.8.1 is scheduled to be released on August 1st. Please report any bugs or errors you encounter in as much detail as possible to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">WordPress Alpha/Beta</a> section of the support forums.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2017 18:31:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: Petition to Re-License React has been Escalated to Facebook’s Engineering Directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/petition-to-re-license-react-has-been-escalated-to-facebooks-engineering-directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7983:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/flags.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/04XDXYUMGQ\">manu schwendener</a>\n<p>React users are <a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\">petitioning Facebook to re-license React.js</a> after the Apache Software Foundation announced its decision to ban Apache PMC members from using any technology licensed with Facebook’s BSD+Patents License. So far the GitHub <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">issue</a> has received 627 &#8220;thumbs up&#8221; emoji and 66 comments from concerned React users who are hoping for a change in licensing.</p>\n<p>Many respondents on the thread said that ASF&#8217;s decision affects their organizations&#8217; ability to continue using React in projects.</p>\n<p>&#8220;Apache CouchDB and others will switch away from React if we have to,&#8221; CouchDB committer Robert Newson <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315596902\" target=\"_blank\">said</a>. &#8220;We&#8217;d rather not, it&#8217;s a lot of work for no real gain, but we don&#8217;t have a choice. Changing license can be simple (RocksDB completed that change in a day).&#8221;</p>\n<p>&#8220;My team, at LinkedIn, is also having legal troubles using React for our internal projects,&#8221; LinkedIn software Denis Ivanov <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316500996\" target=\"_blank\">said</a>. &#8220;We would love to see a change on this front.&#8221;</p>\n<p>Software developer Clark Evans <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315607798\" target=\"_blank\">commented</a> on how React&#8217;s current licensing might affect medical research institutes, and suggested that Facebook consider an Apache 2.0 license because it includes equitable patent grants.</p>\n<blockquote><p>Since U.S. based universities rely upon patent licensing as part of their legislatively mandated technology transfer initiatives, they are growing far more cautious in their due diligence. For this reason, at some universities, software written with React may be shunned. Existing projects using React software may be asked to remove the React software software dependency. Please strongly consider this proposal, since our RexDB work is used at major universities, we do not wish to rework to use a React alternative.</p></blockquote>\n<p>Several participants in the discussion commented that they would like to use React but the licensing makes it impossible for their companies.</p>\n<p>&#8220;Other large companies such as mine (Adobe) can&#8217;t use React, Pop, etc. for the very same reason,&#8221; Corey Lucier <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316046522\" target=\"_blank\">said</a>. &#8220;We&#8217;d love to participate in the project, contribute to each, etc. but Facebook&#8217;s heavy-handed PATENTS clause is a showstopper.&#8221;</p>\n<p>&#8220;Even mid-size companies like mine (ViaSat) are starting to disallow the use of Facebook&#8217;s &#8216;open-source&#8217; projects for this reason,&#8221; software developer Aaron Yoshitake <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316102045\" target=\"_blank\">said</a>. &#8220;We&#8217;d like to build React web and native apps, but it seems that any sensible legal department will recommend against agreeing to Facebook&#8217;s asymmetric patent grant.&#8221;</p>\n<h3>Internal Discussions Continue at Facebook, Re-Licensing Issue has been Escalated to Engineering Directors</h3>\n<p>Dan Abramov, co-author of Redux, Create React App, and React Hot Loader, shared with participants that Facebook is having internal discussions about the re-licensing issue but cautioned them to temper their optimism. He returned to throw some ice on the conversation, which has grown more heated over the past few days, when he said it could only remain an open discussion if everyone involved remains civil. Many participants are concerned about the future of the React-based software that they have already invested thousands of hours of work into.</p>\n<p>&#8220;I understand that everyone is frustrated about this issue,&#8221; Abramov <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316223034\" target=\"_blank\">said</a>. &#8220;Personally I am just as frustrated to spend time, energy, and emotional wellbeing on legal mumbo jumbo that is preventing people from using React. I would much prefer to spend this time on working together to make it better.</p>\n<p>&#8220;But the reality of this situation is that the maintainers of React (people like me that you’re interacting on the issue tracker) are not the ones making these decisions. Each of us is doing what we can to show different perspectives on this issue to the people who can make those decisions, and we appreciate your feedback too. But we can only keep discussion open if everyone stays civil and respectful.&#8221;</p>\n<p>Abramov also pointed out in a follow-up update that a bug tracker isn&#8217;t the best avenue for a legal discussion, especially since most participants are software developers and not lawyers. Many have mistaken the thread as a way to communicate with Facebook but there are just a handful of software developers who are representing the React community&#8217;s concerns.</p>\n<p>&#8220;We have heard you very well, and we have passed on your concerns,&#8221; Abramov said. &#8220;But repeating the same points over and over in different threads does not help move this forward, and creates a lot of noise and stress for the maintainers who are already empathetic to your cause.&#8221;</p>\n<p>Several participants expressed frustration that the React community cannot participate in the discussions more directly. However, as React is both an open source project and a product of Facebook, the company&#8217;s leadership has the last word on licensing issues.</p>\n<p>&#8220;I understand that software developers like us are not the best people to discuss legal details,&#8221; software consultant Erik Doernenburg <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316318170\" target=\"_blank\">said</a>. &#8220;However, wouldn&#8217;t the logical consequence be that the Facebook Legal team, who make such decisions, become active in this forum? Shouldn&#8217;t it be possible that all relevant details pertaining to a piece of open source software are discussed in the open? It is incredibly frustrating to have such an important aspect of open software discussed behind closed doors.&#8221;</p>\n<p>It&#8217;s not known whether Facebook is considering another change to its Patents grant or a complete re-licensing. Participants in the discussion are also concerned about other Facebook open source projects like GraphQL, Relay, React Native, and Flow, which share the same BSD+Patents License and are widely used by the open source community.</p>\n<p>Dan Abramov left an <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-316739812\" target=\"_blank\">update</a> today to let the community know that no resolution is available this week. However, the update seemed more positive than the first one, which discouraged participants from being optimistic about a change.</p>\n<p>&#8220;I want to point out that there is a real momentum behind this discussion internally,&#8221; Abramov said. &#8220;There are going to be more meetings next week escalating this up to the engineering directors. As you imagine they are quite busy, so this is taking more time than we thought.</p>\n<p>&#8220;Again, I can’t promise you any specific conclusion, and there is no clarity on where this will land. But please know there are people working on getting your voice heard.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jul 2017 22:37:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WPWeekly Episode 282 – Talking WooCommerce with Cody Landefeld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=73448&preview=true&preview_id=73448\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpweekly-episode-282-talking-woocommerce-with-cody-landefield\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3381:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"https://twitter.com/codyL\">Cody Landefeld</a>, Senior web strategist and founder of <a href=\"https://modeeffect.com/\">Mode Effect</a>. Landefeld describes some of the challenges that shop owners face and provides insight into a couple of WooCommerce projects Mode Effect has recently built.</p>\n<p>We discussed the future of WooCommerce and the odds of it turning into a SaaS product. Landefeld shares his thoughts on WooCommerce <a href=\"https://wptavern.com/woocommerce-drops-50-renewal-discount-on-subscriptions\">dropping its 50% renewal discount</a> on subscriptions. Even though the discount is gone, he believes it&#8217;s still an affordable option for most users. To close out the show, Jacoby and I discuss the news of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/aj-morris-acquires-ithemes-exchange\">AJ Morris Acquires iThemes Exchange</a><br />\n<a href=\"https://wptavern.com/jetpack-professional-plan-introduces-unlimited-access-to-200-commercial-themes\">Jetpack Professional Plan Introduces Unlimited Access to 200+ Commercial Themes</a><br />\n<a href=\"https://wptavern.com/bbpress-2-5-13-readds-sanitization-to-anonymous-user-data\">bbPress 2.5.13 Readds Sanitization to Anonymous User Data</a><br />\n<a href=\"https://wptavern.com/wp-rollback-adds-multisite-compatibility-and-changelog-preview\">WP Rollback Adds Multisite Compatibility and Changelog Preview</a><br />\n<a href=\"https://wptavern.com/gutenberg-0-5-0-adds-new-verse-block-for-poetry-and-a-new-display-for-recent-blocks\">Gutenberg 0.5.0 Adds New Verse Block for Poetry and a New Display for Recent Blocks</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://ahmadawais.com/gutenberg-boilerplate/\">Gutenberg Boilerplate For Third-Party Custom Blocks</a> by Ahmad Awais. The boilerplate is a great way to learn the basics on creating custom blocks for Gutenberg. It comes with four example blocks.</p>\n<ul>\n<li>A block with custom CSS for editor and front end</li>\n<li>A block with ES6 or ESNext and a Webpack build process</li>\n<li>A block with editable content</li>\n<li>A block to click Tweet the contents of that block</li>\n</ul>\n<p>Awais also shared his thoughts on the Gutenberg project.</p>\n<p><a href=\"https://wordpress.org/plugins/add-admin-css/\">Add Admin CSS</a> &#8211; Using this plugin you’ll easily be able to define additional CSS (inline and/or files by URL) to be added to all administration pages. You can define CSS to appear inline in the admin head (within style tags), or reference CSS files to be linked.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 2nd 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #282:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jul 2017 01:19:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: The State of JavaScript 2017 Survey is Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/the-state-of-javascript-2017-survey-is-now-open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2708:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/stateof-javascript-2017.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"http://stateofjs.com/\" target=\"_blank\">State of JavaScript 2017 Survey</a> is now open to web professionals of all backgrounds. The intent of the survey is to provide an overview of the rapidly changing landscape of JavaScript frameworks and tools by gauging which technologies are growing in popularity and which ones people are liking and using less.</p>\n<p>The survey, created by <a href=\"http://twitter.com/SachaGreif\" target=\"_blank\">Sacha Greif</a> and <a href=\"http://michaelrambeau.com/\" target=\"_blank\">Michael Rambeau</a>, should take approximately 10 minutes to complete. Topics include JavaScript frontend and backend tools and frameworks, state management solutions, testing tools, CSS, build tools, mobile and desktop technologies, package managers, text editors, salaries, and more.</p>\n<p>Last year&#8217;s 89-question survey received more than 9,300 responses. <a href=\"https://wptavern.com/state-of-javascript-survey-results-published-react-emerges-as-clear-winner-in-front-end-frameworks\" target=\"_blank\">Results</a> showed that React ranked higher than other front-end frameworks in terms of developer satisfaction at 92%, followed closely by Vue.js at 89%.</p>\n<p>It will be interesting to see if and how these results change with many open source project and companies growing wary of using React after the Apache Software Foundation&#8217;s recent decision to<a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\"> ban Apache PMC members from using any technology licensed with Facebook&#8217;s BSD+Patents License</a>. A licensing issue that <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">jeopardizes more companies&#8217; ability to use Facebook&#8217;s popular open source technologies</a> could precipitate a decline in React&#8217;s preeminence among frontend frameworks.</p>\n<p>Sacha Greif reports that the survey has <a href=\"https://twitter.com/SachaGreif/status/887473181539188736\" target=\"_blank\">received more than 3,500 responses in less than 24 hours</a>, a remarkable number compared to 9,300 over the course of three weeks last year. This response affirms the value that <a href=\"https://wptavern.com/state-of-javascript-survey-results-published-react-emerges-as-clear-winner-in-front-end-frameworks\" target=\"_blank\">last year&#8217;s results</a> provided to web professionals who are attempting to navigate the ever-expanding JavaScript ecosystem.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 20:16:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: bbPress 2.5.13 Readds Sanitization to Anonymous User Data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/bbpress-2-5-13-readds-sanitization-to-anonymous-user-data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1328:\"<p>The bbPress development team <a href=\"https://bbpress.org/blog/2017/07/bbpress-2-5-13/\">has released</a> bbPress 2.5.13. This release fixes a few bugs, most notably, it readds sanitization to anonymous user data that was accidentally removed in previous versions.</p>\n<p>Those who allow anonymous users to create topics and replies on their forums are encouraged to update immediately.</p>\n<p>&#8220;This feature is not widely used on public forums because spammers aggressively target these kinds of sites, but for communities that rely on this feature, please know you can safely upgrade to 2.5.13 without any issues,&#8221; John James Jacoby, lead developer of bbPress and BuddyPress, said.</p>\n<p>As a reminder, beginning with bbPress 2.5.12, the minimum version of WordPress supported is 4.7. If you&#8217;re using an older version of WordPress, Jacoby recommends using or staying with bbPress 2.5.11.</p>\n<p>bbPress 2.6 is still in the release candidate phase as developers iron out a few issues discovered on WordPress.org.</p>\n<p>Users can <a href=\"https://wordpress.org/plugins/bbpress/\">download the latest versio</a><a href=\"https://wordpress.org/plugins/bbpress/\">n</a> of bbPress from WordPress.org or browse to Dashboard &gt; Updates, and upgrade from within WordPress.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 18:22:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Zagreb to Host 3rd WordCamp in Croatia, September 1-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72737\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/zagreb-to-host-3rd-wordcamp-in-croatia-september-1-3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4747:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/zagreb-croatia.png?ssl=1\"><img /></a>photo credit: Archives of Zagreb Tourist Board &#8211; Author: Marko Vrdoljak\n<p><a href=\"https://2017.zagreb.wordcamp.org/\" target=\"_blank\">WordCamp Zagreb</a> will be held September 1-3 and organizers are anticipating 300 attendees. This is the third WordCamp to be held in Croatia, following WordCamp Rijeka (2015) and WordCamp Split (2016). Although it changes cities every year, the camp is known as Croatia’s annual WordCamp.</p>\n<p>&#8220;Having WordCamp change cities each year is quite normal for us,&#8221; WordCamp Croatia co-organizer and Zagreb meetup organizer Emanuel Blagonic said. &#8220;A lot of people from other cities travel to meetups too. Our largest meetup in Zagreb, which usually has 80+ people present and 100+ live stream viewers, usually has people attending from a 300km circle around Zagreb. People also travel to Split when there are meetups there.&#8221;</p>\n<p>A renewed <a href=\"https://make.wordpress.org/community/2017/07/18/regional-camps-take-2/\" target=\"_blank\">discussion on regional WordCamps</a> is firing up on the WordPress Community team P2 blog, as the topic was discussed at the Community Summit and with recent developments in <a href=\"https://wptavern.com/wordcamp-netherlands-reinstated-for-2018\" target=\"_blank\">WordCamp Netherlands being reinstated</a> and <a href=\"https://wptavern.com/wordsesh-asia-now-in-planning-for-2018-wordcamp-asia-targeted-for-2019\" target=\"_blank\">WordCamp Asia a possibility for 2019</a>. Croatia is another example of a country where a national WordCamp might benefit the community.</p>\n<p>&#8220;When we started with organizing a WordCamp in Croatia, as a community we hoped that WordCamp will help us boost local communities, thus not having everything centralized in Zagreb (where most other meetups happen, i.e. PHP, Design, UX, JavaScript, Python, etc.),&#8221; Blagonic said. &#8220;As a community we strongly believe that every region is different and it should be viewed like that. So far we are organizing WordCamps &#8216;no matter what,&#8217; but having a &#8216;national WordCamp would mean more Croatian sponsors and better coverage from national media.&#8221;</p>\n<p>WordCamp Zagreb will be a three-day event, beginning with workshops on the first day as the event has done in previous years. Organizers are planning for 12 workshops in four tracks that will be open to public registration. The main conference will be held Saturday with two tracks. Contributor Day will close out the event on Sunday, followed by a walking tour of the city.</p>\n<p>Friday&#8217;s workshops will be held mostly in Croatian, except a few, such as WordPress Basics and Public Speaking, which will be conducted in English. All of the conference talks this year will be in English.</p>\n<p>&#8220;Croatia is a tourist country and most of the people here speak good English, which is often used at large tech events,&#8221; Blagonic said. &#8220;With that in mind, every WordCamp so far was (mostly) in English, which means it’s quite welcoming for people outside Croatia, too (Slovenia, Austria, Italy, Germany) – and our community likes to meet new people. Unlike WordCamps, we see Meetups as strong local events so we usually have talks in Croatian there.&#8221;</p>\n<p>Blagonic said every year so far the WordCamp has had approximately 20% of its attendees traveling from outside Croatia, as the country is relatively small with a population of 4 million. Most attendees travel to the WordCamp from other parts of Croatia.</p>\n<p>Croatia currently has five local meetups, but only the two in Zagreb and Split have enough members to meet regularly. Blagonic said he sees the meetups as a way to help local communities grow and views the WordCamp as &#8220;a celebration of the country community.&#8221; However, he believes centralizing the larger events too much would be detrimental to growing the fledgling WordPress communities in the smaller cities.</p>\n<p>&#8220;I’d say that in Croatia (and in the region) we have a young democracy and we still haven’t found the best way to connect with people,&#8221; Blagonic said. &#8220;For example, there are four big cities in Croatia where most of the things happen, and the tech scene is quite strong in them. If you go outside of these four hubs, a lot fewer things happen, which is a problem for people living outside. We believe that having a centralized country is bad for growing local communities (outside these areas) so with changing cities each year and with traveling to other Meetups/WordCamps we hope that we will change how people feel about it. &#8220;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 18:11:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Donncha: WP Super Cache 1.5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89500337\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://odd.blog/2017/07/19/wp-super-cache-1-5-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5935:\"<p>WP Super Cache is a fast full-page caching plugin for WordPress. Download it from your dashboard or get it <a href=\"https://wordpress.org/plugins/wp-super-cache/\">here</a>.</p>\n<p>Version 1.5.0 has been in development for some time. It has a ton of bug fixes and new features. </p>\n<h3>REST API</h3>\n<p>The headline new feature is REST API access to the settings. This will allow developers to create their own interface to the settings of the plugin. Unfortunately it isn&#8217;t yet documented but you can see the code <a href=\"https://github.com/Automattic/wp-super-cache/tree/master/rest\">in the rest directory</a>. Start with load.php where you&#8217;ll find the code that registers all the endpoints. Users who access the API must be logged in as admin users. If you want to test the API, see the end of this post.</p>\n<h3>Settings Page</h3>\n<p>We have also simplified the settings page to make it easier to choose which caching method is used. </p>\n<p><img /></p>\n<p>Instead of maybe confusing the user with technical words like PHP, mod_rewrite and WP-Cache we have split them up into &#8220;Simple&#8221; and &#8220;Expert&#8221; delivery methods, and done away with mentioning WP-Cache completely. Simple delivery uses PHP, expert uses mod_rewrite and well, WP-Cache got the boot because it&#8217;s always active anyway.</p>\n<p>WP-Cache caching is always active, but it can be disabled in different ways.</p>\n<ul>\n<li> Disable caching for known users.</li>\n<li> Don&#8217;t cache pages with GET parameters</li>\n<li> Disable caching of feeds</li>\n</ul>\n<h3>Headers</h3>\n<p>We <a href=\"https://github.com/Automattic/wp-super-cache/pull/287\">expanded the number of headers</a> cached by the plugin. The list of headers was borrowed from <a href=\"https://cometcache.com/\">Comet Cache</a>. However, anonymous users will still only see the bare minimum like content-length or content-type. If you need to use security headers like &#8220;X-Frame-Options&#8221; or &#8220;Content-Security-Policy&#8221; you should enable caching of HTTP headers. This unfortunately disables super caching so only WP-Caching is used but it&#8217;s still very fast (and faster in this release than before which I will get to below). You can also use the &#8220;wpsc_known_headers&#8221; filter to modify the list of recognised headers.</p>\n<h3>WP-Cache Reorganisation</h3>\n<p>WP-Cache cache files are split into two files &#8211; one holds the page content, the other (meta file) holds information about the page such as cookies, headers and url. In the past these files were stored in two directories which could become a problem if there were many thousands of those files. Even with only a few hundred files, maintenance could be an issue as deleting related files (like page archives, or copies of the front page) needed every meta file to be inspected.<br />\nNow the files are stored in the supercache directory structure that mirrors your permalink structure. Deleting related files is is simpler and serving files will be faster as the operating system won&#8217;t need to open a directory of thousands of files.<br />\nIf you currently rely on WP-Cache files, the plugin will still look for them where they are, but new WP-Cache files will be created in cache/supercache/example.com/ (where example.com is your hostname).</p>\n<h3>Sitemaps</h3>\n<p>We added support for caching sitemaps, but your sitemap plugin will need to cooperate to get it to work. The sitemap plugin needs to identify the sitemap request as a feed. Jetpack 5.1 now supports this since <a href=\"https://github.com/Automattic/jetpack/pull/7397\">#7397</a>. You can disable the caching by excluding feeds from caching.</p>\n<h3>Debugging Improved</h3>\n<p>The debug log is now protected by a username/password. For convenience, the username and password are the same but they are a long md5 string:</p>\n<p><img /></p>\n<p>Deleting the log file clears it and resets it ready for more logging. Before, toggling debugging would create a new debug log and the old one would be kept around, but not linked, until deleted by garbage collection, and of course they were text files anyone could access.</p>\n<p>This release includes lots of other small bug fixes and changes. Take a look at the <a href=\"https://github.com/Automattic/wp-super-cache/pulls?q=is%3Apr+is%3Aclosed\">number of closed PRs</a> for an exhaustive list of those changes!</p>\n<h3>Testing the REST API</h3>\n<p>There are a number of ways to send POST requests to a web server but one I like is using curl in a shell script. You&#8217;ll need two bits of information from the website:</p>\n<ol>\n<li> The &#8220;wordpress_logged_in&#8221; cookie from your browser.</li>\n<li> The wp_rest nonce which you can get by adding `echo wp_create_nonce( &#8216;wp_rest&#8217; );` somewhere on your site where you&#8217;re logged in. It&#8217;s good for 24 hours.</li>\n</ol>\n<p>My test script looks something like this:<br />\n<code>export NONCE=\'1234567890\'<br />\nexport COOKIE=\'wordpress_logged_in_xxxxxxxxxxxxxxxxxxxx=1234567890\'<br />\ncurl -v -X \"GET\" -H \"Content-Type: application/json\" -H \"X-WP-Nonce: $NONCE\" -H \"Cache-Control: no-cache\" -H \"Cookie: wordpress_test_cookie=WP+Cookie+check; $COOKIE\" \\<br />\n-d \'{}\' \"https://example.com/wp-json/wp-super-cache/v1/settings/\"</code></p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"https://odd.blog/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"https://odd.blog/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></p>\n<p><a href=\"https://odd.blog/\" rel=\"external nofollow\">Source</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 12:25:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"HeroPress: Becoming Myself Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1978\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://heropress.com/essays/becoming-myself-again/?utm_source=rss&utm_medium=rss&utm_campaign=becoming-myself-again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6018:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/071917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community is, slowly but surely, helping me get rid of my ingrown fear of the unknown, of others.\" /><p>It’s so easy to become secluded and sit at home, in your own bubble, but it wasn’t until a group of people literally pulled me in with their welcoming atmosphere and demeanor, that I realised that I could function amongst other people as well (even if it was somewhat limited).</p>\n<h3>In The Beginning</h3>\n<p>To understand my bubble, you need to also know a little about me, or rather, about my childhood. I had a less than ideal childhood. I have a great family, lived in a great house, even in the “best country in the world” as they say. And despite this, I say I wasn’t happy with my childhood. My school years were the reason, they were rough. At times I think back and feel like events that unfolded were parts of ridiculous scenes from an over the top movie.</p>\n<p>All in all, the days seemed generic enough, except my school days were a thing of dread. I would suffer physical and verbal abuse throughout my schooldays, even going to and from school, I had no real friends (victim by association is understandably not something a child would want to intentionally walk into. I understand this as an adult, but as a child it’s not that easy).</p>\n<blockquote><p>Because of my treatment over the years, I developed trust issues, I got a fear for everyone around me, and it was growing stronger and stronger over the years.</p></blockquote>\n<p>I suppressed it, I lied about it, and I got terrifyingly good at the lying part.</p>\n<p>This is why I was drawn to the internet: I didn’t have to interact with people, I didn’t need to go outside where the others were, I could just do my thing and move on. I could live in my own bubble.</p>\n<h3>Finding WordPress</h3>\n<p>But then the darndest thing happened. I’d been stuck on a project, I needed help, and I turned to a support room for an open source project, for WordPress. If you’ve ever tried to get help in a chat before, you’ll know what kind of an experience it can be, the snarky reactions to your code, the nitpicking of using the wrong terminology, it’s not fun. This place though, they didn’t care that I was not only using the wrong terms, but my entire code was a horrible mess.</p>\n<blockquote><p>Where I would usually get the help I needed and move on, popping back in my bubble of solitude, I instead wanted to be like these people, I wanted to use what I learnt to let others get helped.</p></blockquote>\n<p>Over the years, I all but devote myself to that place. Nobody knew me, I liked staying under the radar, but eventually I got pushed into a team meeting. I was intrigued, so I would watch, I’d say hi, and progressively make my opinions heard. Yet, I would stick to my bubble, once the meeting was over I was back on my own.</p>\n<h3>And Then I Went To WordCamp</h3>\n<p>Until I got to attend my first big WordCamp, the last one held in San Francisco, I was ecstatic! I’d never been to a big conference before, as I didn’t like crowds, but I knew some of the people who would be there. They were people who had been friendly and inviting in the most genuine way imaginable. It’s not easy being worried whenever you’re out amongst people, but this group of people, this community, I didn’t have that fear around them.</p>\n<blockquote><p>I somehow made WordCamps my safe space.</p></blockquote>\n<p>They are where I can, if only for a short while, leave that bubble, leave the need to be alone, and be a part of something great! I use them as fuel to get through the hard times, I can look forward to meeting people, people who value my opinions and my experience. People who genuinely want to listen and most of all, care about you! The WordPress community is, slowly but surely, helping me get rid of my ingrown fear of the unknown, of others.</p>\n<p>The community is helping me become myself again.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Becoming Myself Again\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Becoming%20Myself%20Again&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Becoming Myself Again\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbecoming-myself-again%2F&title=Becoming+Myself+Again\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Becoming Myself Again\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/becoming-myself-again/&media=https://heropress.com/wp-content/uploads/2017/07/071917-150x150.jpg&description=Becoming Myself Again\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Becoming Myself Again\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/becoming-myself-again/\" title=\"Becoming Myself Again\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/becoming-myself-again/\">Becoming Myself Again</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 12:00:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Marius Jensen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: New WordPress Contributors Meeting Provides Opportunities to Ask Questions and Learn the Ropes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://wptavern.com/new-wordpress-contributors-meeting-provides-opportunities-to-ask-questions-and-learn-the-ropes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2270:\"<p>Contributing to WordPress or other open source projects can be intimidating for first-time contributors. Sometimes, all you need is a helping hand to overcome fear, intimidation, or other barriers.</p>\n<p>In 2013, with the help of Konstantin Obenland, a WordPress core developer, I overcame my fear and <a href=\"https://wptavern.com/i-contributed-to-the-core-of-wordpress-and-you-can-too\">contributed my first patch</a> to WordPress.</p>\n<p>This is one of the principles behind a <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">new weekly meeting</a> that is geared towards new contributors.</p>\n<p>&#8220;The new contributors meeting is the perfect place to come if you are new to contributing to WordPress core and have questions,<em>&#8221; </em>Adam Silverstein, WordPress core contributor, said.</p>\n<p>Every Wednesday at 3PM Eastern Daylight Time, users can visit the #core WordPress Slack channel and ask questions related to patches, tickets, and review the <a href=\"https://core.trac.wordpress.org/tickets/good-first-bugs\">good-first-bugs report</a> on Trac.</p>\n<p>The first meeting was <a href=\"https://make.wordpress.org/core/2017/07/10/new-contributors-meeting-recap-july-5/\">held on July 5th</a> where participants asked questions about working with Git in WordPress core, applying patches, and unit testing. In <a href=\"https://make.wordpress.org/core/2017/07/18/new-contributors-meeting-recap-july-12/\">the second meeting</a>, participants discussed whether or not new contributors are allowed to make changes to tickets.</p>\n<p>Other topics mentioned include, which repositories to use, clarification on contributing to core versus updating the WordPress Developer&#8217;s site, and which tickets to select for review.</p>\n<p>The next meeting is on Wednesday, July 19th at 3PM Eastern. If you have any questions on how to contribute to WordPress, be sure to join the WordPress #core Slack channel at that time and ask away.</p>\n<p>Meeting notes with links to discussions, tickets mentioned, and other resources are published on the Make WordPress Core blog under the <a href=\"https://make.wordpress.org/core/tag/new-contributors/\">#new-contributors</a> tag</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Jul 2017 05:09:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WP Rollback Adds Multisite Compatibility and Changelog Preview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wp-rollback-adds-multisite-compatibility-and-changelog-preview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4021:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/05/undo-button.jpg?ssl=1\"><img /></a></p>\n<p>In the two years since <a href=\"https://wordpress.org/plugins/wp-rollback/\" target=\"_blank\">WP Rollback</a> launched on WordPress.org, the plugin has racked up more than 30,000 active installations with nearly all 5-star reviews. It allows users to roll back any WordPress.org plugin or theme to a previous version with just a few clicks and also <a href=\"https://wordimpress.com/beta-testing-wordpress-plugins-with-wp-rollback/\" target=\"_blank\">supports beta versions of plugins</a>.</p>\n<p>It&#8217;s easy to see why the plugin is so popular. Navigating buggy updates is a natural part of life when maintaining a self-hosted website and not all users have a separate testing environment for their websites. This tool gives them a basic diagnostic tool and the confidence to apply updates knowing they can easily roll it back in case of a problem. Many reviewers cite the plugin as having been &#8220;a lifesaver&#8221; when applying WooCommerce or Yoast SEO updates that had unexpected results.</p>\n<p>The <a href=\"https://wordpress.org/support/topic/apparently-not-working-for-themes-rollback-on-multisites/\" target=\"_blank\">lone one-star review of WP Rollback</a> was given because the user anticipated multisite compatibility and was unable to get it to work. That issue has been solved in the latest update.</p>\n<p><a href=\"https://wordimpress.com/wprollback-wordpress-multisite/\" target=\"_blank\">WP Rollback 1.5</a> is fully compatible with multisite networks, giving super admins the ability to roll back extensions from the network plugin/themes screen or from the the plugins/themes screen of the primary site in the network. Sub-sites do not have the ability to roll back plugins and themes for the entire network. The UI for rolling back themes on the network admin screen is identical to the plugin screens, as multisite doesn&#8217;t have the fancy theme preview screen that single site installs have.</p>\n<p>Version 1.5 also adds the ability for users to preview the changelog for previous versions of a plugin. This makes it convenient for users to quickly view the changes for each version without leaving the admin.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/rollback_changelog.gif?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordimpress.com\" target=\"_blank\">WordImpress</a>, the folks behind WP Rollback, have considered adding core rollbacks and database savepoints, but both features have serious potential drawbacks that could turn it into a high support-demanding plugin. In its current state, the plugin is virtually support-free.</p>\n<p>Matt Cromwell, Head of Support and Community Outreach at WordImpress, said the team thought about monetizing the plugin in the beginning, but is not pursing any plans to do so at this time.</p>\n<p>&#8220;We think of it as just one of the many ways we are giving back to the WP community,&#8221; Cromwell said. &#8220;Our preference would be for the core team to consider it as a potential feature plugin for eventual core inclusion.&#8221;</p>\n<p>Cromwell said WordImpress hasn&#8217;t made any intentional steps to see if core folks are interested in WP Rollback becoming a feature plugin, but the team has purposely built it to be as close to core standards as possible. He believes it would be relatively easy to implement in WordPress.</p>\n<p>Suggestions for new features, general feedback, and bug reports are welcome on WP Rollback&#8217;s <a href=\"https://github.com/WordImpress/WP-Rollback\" target=\"_blank\">GitHub repository</a>. The plugin&#8217;s authors recommend backing up your site before using it to rollback plugins and themes or testing rollbacks on a staging site first. WP Rollback is not capable of rolling back changes a plugin update has made to the database, so a backup can come in handy if the database changes are incompatible with previous versions.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2017 22:24:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"WPTavern: React Users Petition Facebook to Re-license React.js after Apache Software Foundation Bans BSD+Patents License in Dependencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73216\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9983:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/apache-software-foundation.png?ssl=1\"><img /></a></p>\n<p>The Apache Software Foundation <a href=\"https://issues.apache.org/jira/browse/LEGAL-303?focusedCommentId=16088663&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16088663\" target=\"_blank\">issued a notice</a> over the weekend, indicating that it has added <a href=\"https://code.facebook.com/pages/850928938376556\" target=\"_blank\">Facebook&#8217;s BSD+Patents license</a> to its <a href=\"https://www.apache.org/legal/resolved#category-x\" target=\"_blank\">Category X list of disallowed licenses</a> for <a href=\"https://www.apache.org/dev/pmc.html\" target=\"_blank\">Apache PMC members</a>. This is the license that Facebook uses for most of its open source projects.</p>\n<p>A representative from Facebook&#8217;s <a href=\"https://github.com/facebook/rocksdb\" target=\"_blank\">RocksDB</a> team <a href=\"https://issues.apache.org/jira/browse/LEGAL-303?focusedCommentId=16088730&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16088730\" target=\"_blank\">commented</a> on the Apache Foundation&#8217;s post to advise that the project will meet the August 31st deadline for relicensing in order to be in compliance with Apache PMC member requirements, and that change has been <a href=\"https://github.com/facebook/rocksdb/commit/3c327ac2d0fd50bbd82fe1f1af5de909dad769e6\" target=\"_blank\">committed</a> today:</p>\n<blockquote><p>The RocksDB team is adjusting the licensing such that it will be dual-licensed under the Apache 2 and GPL 2 (for MySQL compatibility) licenses. This should happen shortly and well ahead of August 31st. I&#8217;ll leave the history and philosophy around licensing alone since it&#8217;s generally a complex discussion to have and I&#8217;m not sure that it has actually been fully captured in this thread especially vis a vis Facebook&#8217;s intent.</p>\n<p>Hopefully this morning&#8217;s guidance to PMCs can be adjusted since I don&#8217;t think any of us see a bunch of extra engineering effort as a desirable thing across the ASF projects which are already making use of RocksDB</p></blockquote>\n<p>In light of the ASF Legal Affairs Committee&#8217;s decision to disallow the BSD+Patents License in Apache projects, ASF member Joan Touzet opened an issue on the React repository urging Facebook to consider re-licensing React.js under Apache License v2.0 and GPL 2:</p>\n<blockquote><p>\nThis has led to a lot of upset and frustration in the Apache community, especially from projects requiring similarly-licensed code as direct dependencies &#8211; the chief of these being RocksDB.</p>\n<p>We (the Apache Software Foundation) have just received word that RocksDB will be re-licensing their code under the dual Apache License v2.0 and GPL 2 licenses.</p>\n<p>As a user of React.JS in an ASF top-level project (Apache CouchDB), please consider re-licensing React.JS under similar terms. Otherwise, many ASF projects such as our own will have to stop relying on and building with React.</p></blockquote>\n<p>Although the re-licensing of RocksDB solves that particular project&#8217;s problem, ASF&#8217;s ban of Facebook&#8217;s BSD+Patents license means other widely used technologies from Facebook, including React.js, are still banned. This is likely to cause problems for many open source projects.</p>\n<p>Harshavardhana, from the <a href=\"https://www.minio.io/\" target=\"_blank\">Minio</a> team, commented in support of the petition to Facebook for re-licensing React.</p>\n<p>&#8220;Our object storage browser UI is based on React and we are Apache 2.0 licensed,&#8221; he said. &#8220;It would be unfortunate and time consuming to migrate but we will have to do that in lieu of new information regarding Apache incompatibility. Please consider re-licensing React.&#8221;</p>\n<p>Contributors to <a href=\"https://github.com/omcljs/om\" target=\"_blank\">Om</a>, a ClojureScript interface for React, are also <a href=\"https://github.com/omcljs/om/issues/882\" target=\"_blank\">discussing whether or not the ASF&#8217;s new requirements will affect their project</a>. Greg Stein, commenting on behalf of ASF, clarified the reasons behind the organization&#8217;s decision to ban Facebook&#8217;s BSD+Patents license:</p>\n<blockquote><p>Please note that the ASF chose this path for policy reasons, rather than &#8220;license incompatibility&#8221;. We don&#8217;t want downstream users of Apache code to be surprised by the PATENTS grant that (was) in RocksDB and (is) in React. Users should only need to follow the ALv2, with no further constraints.</p>\n<p>These license can work together (IMO) and simply provide two sets of restrictions upon users.</p></blockquote>\n<p>Stein said it was not ASF&#8217;s lawyers who made the decision but rather the organization&#8217;s policy decision to &#8220;disallow FB/BSD+Patent license to be mixed into the software the Foundation releases to users.&#8221;</p>\n<h3>Facebook is Internally Discussing the Re-Licensing Matter</h3>\n<p>Dan Abramov, co-author of Redux, Create React App, and React Hot Loader, <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-315707719\" target=\"_blank\">joined the discussion on GitHub</a> regarding re-licensing with a brief and ambiguous summary about how Facebook is handling the petition to re-license.</p>\n<p>&#8220;To give you a small update, there are going to be more internal discussions about this for about a week,&#8221; Abramov said. &#8220;This is about as much as I can say. I wouldn&#8217;t be too optimistic about this changing for React but we&#8217;ll see. @daveman692 has kindly agreed to provide an update when these discussions are over.&#8221;</p>\n<p>Dropping the patent grant entirely, which would be the most convenient way of solving this issue for open source projects, isn&#8217;t likely to happen. React has already gone through re-licensing twice during its short history. It was originally licensed under Apache 2.0 but this was changed in October 2014 to the BSD License plus the patent grant, which included a highly controversial termination provision. In April 2015, the patent grant was changed slightly to allow licensees to continue to use the software in the event that a patent lawsuit did not include a counterclaim against Facebook or its affiliates in a matter unrelated to React.js.</p>\n<p>The termination provision in Facebook&#8217;s BSD+Patents License continues to be unpopular and is regarded suspiciously by many open source project maintainers. When the Drupal project began <a href=\"http://buytaert.net/selecting-a-client-side-framework-for-drupal\" target=\"_blank\">considering a client-side framework to supersede Backbone.js</a>, Dries Buytaert passed on React based on what he said was &#8220;a potentially unacceptable patent clause,&#8221; citing <a href=\"https://github.com/Automattic/wp-calypso/issues/650\" target=\"_blank\">pushback from WordPress.com&#8217;s Calypso and React contributors</a>.</p>\n<p>The WordPress open source project has not formally announced its decision on which JavaScript framework will be included in core, but all signs point to React. WordPress&#8217; upcoming Gutenberg editor is built on React and its chief contributors are Automattic employees who work on React-based products for WordPress.com. Gutenberg continues to plough forward at a breakneck pace with no indication of a rewrite, and WordPress co-creator Matt Mullenweg has been outspoken about his preference for using React.</p>\n<p>Although Automattic&#8217;s legal counsel has said the company is <a href=\"https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause\" target=\"_blank\">comfortable using React for its product under the project&#8217;s current license </a>, others in the WordPress community are not as amenable to including the framework in core.</p>\n<p>The Open Source Initiative (OSI) includes a generic <a href=\"https://opensource.org/licenses/BSDplusPatent\" target=\"_blank\">BSD+Patent license</a> listed among its approved licenses, but Facebook&#8217;s particular BSD+Patent license has not been submitted. Robert Pierce, a partner at El Camino Legal, <a href=\"https://www.elcaminolegal.com/single-post/2016/10/04/Facebook-Reactjs-License\" target=\"_blank\">contends</a> that the license termination provision ought to be impermissible in an open source license because it exists to protect Facebook from patent litigation that is completely unrelated to React code:</p>\n<blockquote><p>Facebook touts React.js as open source software. But in my mind the license termination provision of the Additional Grant of Patent Rights takes the offering outside the realm of open source software.</p>\n<p>The patent license offered in the Additional Grant of Patent Rights (v.2) is conditioned upon the licensee not bringing a patent infringement lawsuit against Facebook or its affiliates. Thus, the licensee pays a price to use the library. It is not a price paid with money. The price demanded by Facebook for use of the library is that the licensee refrain from exercising any of its patent rights against Facebook or its affiliates.</p></blockquote>\n<p>Pierce views Facebook&#8217;s publication of React source code as leverage to win some protection against patent lawsuits, which he deems to be &#8220;too greedy an approach for Facebook to claim open source status.&#8221;</p>\n<p>The open source community has widely speculated about the implications of including Facebook&#8217;s BSD+Patent license as a dependency, but the license has not yet been tested in court. The Apache Software Foundation is the first major organization to take a hard line stance on the controversial license and this has caught Facebook&#8217;s attention. Facebook representatives have promised an update on the petition for re-licensing after its internal discussions have concluded.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2017 03:25:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Stylishly Display Weather Conditions with the Weather Atlas Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/stylishly-display-weather-conditions-with-the-weather-atlas-widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2207:\"<p>If you&#8217;re looking for an easy way to display weather conditions on your site, check out the new <a href=\"https://wordpress.org/plugins/weather-atlas/\">Weather Atlas Widget</a> by <span class=\"byline\"><span class=\"author vcard\"><a href=\"https://profiles.wordpress.org/weatheratlas\">Yu Media Group d.o.o</a>. Once activated, browse to Appearance &gt; Widgets, and add the Weather Atlas widget to a sidebar. </span></span></p>\n<img />Weather Atlas Settings\n<p>As you begin typing, a drop-down list of cities is displayed. This helps choose the correct city. From here, users can configure the following settings:</p>\n<ul>\n<li>Display temperatures in Fahrenheit or Celsius</li>\n<li>Use English or Spanish language</li>\n<li>Horizontal or Vertical Layout &#8211; Horizontal displays more information such as five-day forecasts</li>\n<li>Font size. By default, the widget uses the font size specified in the theme</li>\n<li>Background color</li>\n<li>Text Color</li>\n<li>Headings</li>\n</ul>\n<p>Users can display sunrise and sunset times, heat index, wind chills, UV index, wind speeds, humidity, and pressure. You can also hide or display hourly forecasts.</p>\n<img />Forecast for Cleveland, Ohio\n<p>It&#8217;s recommended that for three-hour forecasts, you use the vertical layout and for five-hour forecasts, the horizontal layout. The same recommendations apply for daily forecasts.</p>\n<p>The widget not only looks nice but it also changes color based on temperature. Shades of blue represent cooler temperatures while shades of red represent warmer temperatures.</p>\n<img />Temperatures Represented by Colors\n<p>By default, the bottom of the widget displays the text, &#8220;Weather from Weather Atlas&#8221;. However, if you choose to display the detailed forecast, the text is replaced with a Detailed Forecast link. This link takes visitors to a page on Weather-Atlas.com that displays detailed weather conditions for the selected city.</p>\n<p>I tested the Weather Atlas Widget on WordPress 4.8 and didn&#8217;t encounter any issues. It&#8217;s <a href=\"https://wordpress.org/plugins/weather-atlas/\">available for free</a> on the WordPress plugin directory.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2017 01:55:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Gutenberg Boilerplate Demonstrates How to Build Custom Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73202\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/gutenberg-boilerplate-demonstrates-how-to-build-custom-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4716:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/gutenberg-boilerplate.jpg?ssl=1\"><img /></a></p>\n<p>Gutenberg is still in beta but developers are already getting ready for creating their own custom blocks. Over the weekend Ahmad Awais released a new project called <a href=\"https://ahmadawais.com/gutenberg-boilerplate/\" target=\"_blank\">Gutenberg Boilerplate For Third-Party Custom Blocks</a>. Awais&#8217; introductory post includes a rundown of his thoughts on the current pros and cons of developing for the Gutenberg project. Although he appreciates the technology behind Gutenberg and the improvements over shortcodes, he is not fully sold on the concept of putting everything into blocks. To learn more, he decided to jump into the code.</p>\n<p>&#8220;I am still making up my mind with how Gutenberg will fit in the WordPress core,&#8221; Awais said. &#8220;There are so many things which are both good and bad about it. So, instead of ranting about it, I wanted to do something more productive. I went ahead, studied the source code and received a lot of help from Gutenberg contributors (Matias Ventura, James Nylen, Riad Benguella, Andrew Duthie, Joen, etc.) to finally build a Gutenberg Boilerplate project.&#8221;</p>\n<p>Awais&#8217; <a href=\"https://github.com/ahmadawais/Gutenberg-Boilerplate/\" target=\"_blank\">Gutenberg Boilerplate</a> is a good starting place for learning more of the basics about developing for the editor. It comes in the form of a plugin that offers four examples of how to build different kinds of custom Gutenberg blocks, with and without a build process:</p>\n<ul>\n<li>A block with custom CSS for editor and front end</li>\n<li>A block with ES6 or ESNext and a Webpack build process</li>\n<li>A block with editable content</li>\n<li>A block to click Tweet the contents of that block</li>\n</ul>\n<p>For example, the tweet block, which is something that might previously been handled with a shortcode, is an example that includes four files: block.js to register the custom Gutenberg block, editor.css, style.css, and index.php.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/4-gb.gif?ssl=1\"><img /></a></p>\n<p>Awais noticed that many developers were wanting to try building third-party blocks, but Gutenberg&#8217;s documentation for this was outdated and/or non-existent. He got involved in contributing to the project&#8217;s documentation after discovering the docs describing how to enqueue block and block editor assets were not available. This gave him the inspiration to create a boilerplate.</p>\n<p>&#8220;Both as a theme/plugin developer, I think there’s going to be a steep learning curve here for just about everyone &#8211; users as well as developers,&#8221; Awais said. &#8220;WordPress development just became very complicated with the Gutenberg project. I&#8217;m also not sure how devs will start writing extensions. Some users might expect them to keep the shortcodes for the old editor. Some might ask for blocks in the new one. Is there an API or back-compat? In short everything is changing and this change has both pros and cons.&#8221;</p>\n<p>These concerns also tie into the larger discussion around <a href=\"https://github.com/WordPress/gutenberg/issues/952\" target=\"_blank\">how Gutenberg can support legacy metaboxes that use the old PHP framework</a>, instead of updating to the new JS.</p>\n<p>&#8220;New metaboxes should be written in JS, and will appear in the Post Settings sidebar alongside the stock ones,&#8221; Gutenberg contributor Joen Asmussen said. &#8220;Metaboxes written in PHP should ideally be upgraded to be JS, but should continue to work in their PHP form also.&#8221; Asmussen has proposed an &#8220;Extended Settings&#8221; panel to house legacy metaboxes in a section below the editor. It would appear only when legacy plugins and metaboxes are enabled, as shown in the mockup below.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/extended-settings-mockup.png?ssl=1\"><img /></a></p>\n<p>Discussion regarding how to support metaboxes is still ongoing. With so many important issues like this up in the air, it&#8217;s too early to know what the future of extending Gutenberg will look like. At the moment, the project is undergoing rapid development and changes, so extending Gutenberg may evolve drastically over a short period of time. If the editor is to preserve the same flexibility and customization opportunities of its predecessor, the project will need to ensure that it is easy to create custom blocks and extensions while continuing to support older PHP metabox infrastructure that is currently widely used.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jul 2017 20:28:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Gutenberg 0.5.0 Adds New Verse Block for Poetry and a New Display for Recent Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72830\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/gutenberg-0-5-0-adds-new-verse-block-for-poetry-and-a-new-display-for-recent-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5718:\"<p>Another round of Gutenberg updates was released today. Last weekend brought <a href=\"https://make.wordpress.org/core/2017/07/08/whats-new-in-gutenberg-july-8th/\" target=\"_blank\">version 0.4.0</a>, which didn&#8217;t have too many noteworthy visible changes on the frontend but introduced an API for handling pasted content. Gutenberg developers are aiming to have specific handling for converting pasted content from applications like Word, Markdown, and Google Docs to native WordPress blocks. Version 0.4.0 also added navigation between blocks using arrow keys and included a new approach for rendering embed frames.</p>\n<p><a href=\"https://make.wordpress.org/core/2017/07/14/whats-new-in-gutenberg-14th-july/\" target=\"_blank\">Gutenberg 0.5.0</a> hit dashboards today. One major improvement to the writing flow is that the editor will now avoid showing block UI while the user is typing and/or starting a new paragraph in a text block. You can test this by typing and pressing enter twice to begin a new text block. No UI should be visible during this process. Small improvements like this one are gradually bringing a bit more zen to the editor, which is still full of confusing and surprising experiences.</p>\n<p>Version 0.5.0 adds the ability to upload images via drag-and-drop onto image block placeholders. The example below shows one of my tests. While the image is uploading, it fades in and out. This experience is a bit disconcerting, especially if the upload never resolves. I&#8217;m not certain this UI provides the best communication for the status of the image upload.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/gutenberg-image-upload.gif?ssl=1\"><img /></a></p>\n<p>This version also introduces a new Verse block, which is intended for poetry. It has a slight indent, as compared to a plain text block, but it doesn&#8217;t yet work well with copy and paste. Unless you are a poet composing in WordPress, it&#8217;s far more likely that you will be pasting in poetry content from somewhere else on the web. Other than the initial bugs, it&#8217;s a useful block for those who often post verse.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/verse-block.png?ssl=1\"><img /></a></p>\n<p>With the growing number of block types, it can be cumbersome to sort through all of them when adding a new block. Gutenberg 0.5.0 implements a new display for recent blocks. A maximum of eight are shown and the most recently used ones are displayed at the top. It does not yet persist between editor sessions, but Gutenberg contributors plan to add that in the future.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/recent-blocks.png?ssl=1\"><img /></a></p>\n<p>Other notable improvements in this release include the following:</p>\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1833\" target=\"_blank\">New tabs mode for the sidebar</a> to switch between post settings and block inspector</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1816\" target=\"_blank\">Display warning message</a> when navigating away from the editor with unsaved changes</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1872\" target=\"_blank\">Mobile implementation</a> of block mover, settings, and delete actions</li>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/1852\" target=\"_blank\">Search through all tabs</a> on the inserter and hide tabs</li>\n<li>Enable <a href=\"https://github.com/WordPress/gutenberg/pull/1889\" target=\"_blank\">ability to add custom classes</a> to blocks (via inspector)</li>\n<li>Add <a href=\"https://github.com/WordPress/gutenberg/pull/1896\" target=\"_blank\">“table of contents” document outline</a> for headings (with empty heading validation)</li>\n</ul>\n<h3>Writing Long-Form Content with Gutenberg is Still a Frustrating Experience</h3>\n<p>Gutenberg in its current state is a long way away from being an editor that users would embrace for long-form writing. It still contains many unnerving bugs that steal user confidence. For example, when pasting in multiple paragraphs from a lorem ipsum generator, the editor gave me a white screen and I lost all of the content in my post. After a bit of testing I found that pasting in paragraphs one at a time worked.</p>\n<p>This kind of frustrating and unexpected behavior has caused many testers to wonder why it isn&#8217;t being referred to as alpha software instead of beta. WordPress contributor Jon Brown summed up this common sentiment in a <a href=\"https://make.wordpress.org/core/2017/07/08/whats-new-in-gutenberg-july-8th/#comment-32799\" target=\"_blank\">comment</a> on the 0.4.0 release post.</p>\n<p>&#8220;It’s getting better, but it honestly still feels more like a 0.0.4 alpha than a 0.4.0 beta,&#8221; Brown said. &#8220;I’ve tried writing long form content several times with each version since 0.1.0 and each time I’m quickly frustrated by the lack of flow between blocks. It’s more frustrating than TinyMCE.&#8221;</p>\n<p>Gutenberg needs to make significant progress before it can be suitable for writing anything more than a few short paragraphs. It&#8217;s nearly impossible to get into the flow of creating long-form content with the prominence of the block UI. Right now, the editor just gets in the way. The current UI is skewed heavily towards frequent block creation. It is clutter-some and distracting for pure writing tasks. Following the evolution of the editor, with its fast-paced development cycle, is exhilarating after years of stagnation. But the project is sorely in need of a breakthrough where the Gutenberg UI finally gets out of the way of writing.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 15 Jul 2017 05:14:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: Jetpack Professional Plan Introduces Unlimited Access to 200+ Commercial Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73055\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/jetpack-professional-plan-introduces-unlimited-access-to-200-commercial-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3407:\"<p>Automattic has been teasing its plan to add commercial themes to Jetpack for several months after introducing theme installation for self-hosted users from WordPress.com. In March, the plugin <a href=\"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-themes\" target=\"_blank\">opened up access to all of WordPress.com&#8217;s free themes via the Jetpack Manage interface</a>. All signs pointed to Automattic developing the infrastructure to offer commercial themes via Jetpack upgrades. At that time, however, Jetpack team member Richard Muscat said that Automattic had &#8220;no immediate plans to sell themes at this time.&#8221;</p>\n<p></p>\n<p>Yesterday those subscribed to the Jetpack Announcements email were notified that <a href=\"https://wordpress.com/professional-sites/\" target=\"_blank\">commercial themes have landed</a> in the <a href=\"https://jetpack.com/install/professional/\" target=\"_blank\">Jetpack Professional plan</a>, which is regularly priced at $24.92/month or $299/year. Customers will have unlimited access to more than 200 commercial themes that are already available on WordPress.com. Jetpack users on the free plan will see all the themes available in the WordPress.com theme browser with a prompt to upgrade for the ones that are commercial.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/jetpack-themes.png?ssl=1\"><img /></a></p>\n<p>The announcement also noted that any themes users elect to use will be automatically backed up and regularly scanned for malware as part of the security services included in the package. For those who are running a multisite network, each site will need its own Jetpack Professional subscription to have access to the commercial themes.</p>\n<p>For years the WordPress community has speculated about what Automattic&#8217;s long game was for Jetpack, and many believed it was only a matter of time before the plugin started offering commercial upgrades. It was <a href=\"https://jetpack.com/2011/03/09/blast-off/\" target=\"_blank\">introduced to the WordPress world in 2011</a>  as a way to provide feature parity between WordPress.com and self-hosted sites. The first version included just eight modules, but fellow plugin developer and entrepreneurs in the community were immediately aware of its commercial potential.</p>\n<p>In 2016, Automattic CEO Matt Mullenweg <a href=\"https://wptavern.com/woocommerce-powers-42-of-all-online-stores\" target=\"_blank\">identified both Jetpack and WooCommerce as “multi-billion dollar opportunities”</a> that could each individually be larger than WordPress.com. The plugin is now active on more than 3 million WordPress sites. Automattic&#8217;s aggressive commercialization of Jetpack in the past two years is the fulfillment of initial predictions about where the plugin was headed.</p>\n<p>The new commercial themes offering significantly raises the value of the Jetpack Professional plan, which was previously targeted at business users who require unlimited storage, Google Analytics, and additional SEO features. With the addition of unlimited use of 200+ themes, Automattic has expanded the Professional plan to be more compelling for non-business users who are simply interested in gaining access to a collection of professionally-supported themes.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 21:46:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"BuddyPress: BuddyPress 2.9.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=267012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://buddypress.org/2017/07/buddypress-2-9-0-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2980:\"<p>Today sees BP 2.9.0 move to The final testing phase <strong>Release Candidate 1</strong>.</p>\n<p>This is the last chance to test out this release and report back any issues found before final release in approximately two weeks time.</p>\n<p>Any issues found can be reported to our <a href=\"https://buddypress.trac.wordpress.org/newticket\"> trac ticket home </a>, or raised on the support forum.</p>\n<p>Amongst other improvements and fixes to look out for are:</p>\n<ul>\n<li>Fixing display of older activity comments.</li>\n<li>Correction of message when removing friends that are not friends.</li>\n<li>Group invites &#8211; omit sending to previously invited members.</li>\n<li>Profile image upload fix for IE Edge breaksIOS fix.</li>\n<li>Correct issue with hidden group &amp; CSS specificity.</li>\n<li>URL compatibility for LightSpeed.</li>\n<li>Fix inability resizing of member avatar for cyrillic character filenames.</li>\n</ul>\n<p>For a full list of commits see <a href=\"https://buddypress.trac.wordpress.org/query?keywords=~&milestone=2.9&group=status&col=id&col=summary&col=keywords&col=owner&col=type&col=priority&col=component&col=version&order=priority\">2.9 tickets</a> A full changelog will be available when we release the final version.</p>\n<p>You can download the plugin to test from the WP repo <a href=\"https://downloads.wordpress.org/plugin/buddypress.2.9.0-RC1.zip\">BP 2.9.0-RC1</a> or grab a copy from our SVN repo.</p>\n<p>A reminder to all theme developers that there are changes to template markup that could effect layouts and ask that they check their themes carefully, the changes are listed below along with changelog links; again any issues or problems please report as soon as possible to the BP trac or slack channel.</p>\n<p><strong>Template changes</strong></p>\n<p>In this release there are a number of improvements to templates that add a level of improved a11y performance and markup changes for better semantics &amp; Standards.</p>\n<p>Theme authors may want to pay particular attention to changes to profile field visibility links and the profile field descriptions where significant markup changes are made that effect positioning of these elements &#8211; changesets for these are <a href=\"https://buddypress.trac.wordpress.org/changeset/11617\">r11617</a> &amp; <a href=\"https://buddypress.trac.wordpress.org/changeset/11618\">r11618</a></p>\n<p><strong>Nouveau &#8211; new template pack</strong></p>\n<p>If you&#8217;re looking for Nouveau as we mentioned in the beta2 announcement we have delayed the release of this new template pack to ensure it receives as much code checking &amp; refinement as possible and we&#8217;ll be looking to probably package this as it&#8217;s own release shortly after 2.9 is released.</p>\n<p>We thank you in advance for all testing and reports and it need not be mentioned but please don&#8217;t run Beta or RC releases in a production environment only on test installs.</p>\n<p>Regards,<br />\nThe BuddyPress team.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 12:57:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Hugo Ashmore\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: CoKinetic Systems Pursues $100 Million GPL License Violation Case Against Panasonic Avionics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72923\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/cokinetic-systems-pursues-100-million-gpl-license-violation-case-against-panasonic-avionics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7082:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/paper-plane.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/8176740@N05/5703519506\">Paper Plane</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Open source software has made its way into nearly every industry, but a recent open source security and risk analysis shows <a href=\"https://wptavern.com/2017-open-source-security-and-risk-analysis-report-shows-widespread-gpl-license-conflicts\" target=\"_blank\">widespread license compliance risks</a>, with 75% of the audited applications including GPL license conflicts. Although most violations are unintentional, there are some cases where companies do not comply with the license in order to block competitors from developing similar software.</p>\n<p>GPL enforcement doesn&#8217;t often lead to litigation. When it does, most other avenues of resolving the complaint have already been exhausted. A lawsuit in the air transport industry is currently bringing more attention to the gravity of not complying with open source software licensing requirements.</p>\n<p><a href=\"http://www.cokinetic.com/\" target=\"_blank\">CoKinetic Systems</a>, a developer and manufacturer of in-flight entertainment (IFE) software, has <a href=\"https://www.unitedstatescourts.org/federal/nysd/470007/1-0.html\" target=\"_blank\">filed a case against Panasonic Avionics</a> that includes allegations of a fairly egregious breach of the GPL. The complaint alleges that Panasonic Avionics has monopolized the Panasonic IFE Software and Media Services Market by deliberately refusing to distribute the source code for its open-source Linux-based operating system:</p>\n<blockquote><p>More specifically, Panasonic has built the Linux-Based Panasonic Core Software using the open-source Linux kernel, which is clearly governed by the GPL, together with Panasonic’s own modified Linux modules, which are likewise governed by the GPL. </p>\n<p>Indeed, Panasonic has itself affirmatively identified its own modified modules as being subject to the GPL, because the original Linux modules were specifically designed to generate warning messages if other code is linked with or otherwise combined with the Linux modules that are not licensed under the GPL. To suppress these warnings, Panasonic willfully acted to insert code into its own modules to indicate that they were licensed under the GPL.</p>\n<p>Panasonic has incorporated a massive amount of open source modules, programs, and libraries into the Linux-Based Panasonic Core Software, without distributing notices or source code to the Linux-Based Panasonic Core Software, or even to any part of it&#8230;By deliberately refusing to distribute the source code to the Linux-Based Panasonic Core Software in accordance with its GPL obligations, Panasonic intentionally deprives competitors in the market from having the ability to develop software that can access the basic features and capabilities of Panasonic IFE Hardware.</p></blockquote>\n<p>CoKinetic Systems contends that Panasonic&#8217;s refusal to distribute its source code voids its GPL license and &#8220;potentially exposes Panasonic to billions of dollars in statutory damages for hundreds of thousands of hardware installations that willfully infringe copyrights belonging to hundreds or even thousands of software developers that freely contributed source code to Linux.&#8221;</p>\n<p>Furthermore, the complaint details how competitors have to rely on Panasonic&#8217;s APIs in order to offer software services to airlines using Panasonic&#8217;s IFE hardware, because they do not have access to the source code for the Linux-based core software. CoKinetic claims that Panasonic also deliberately blocks competitor products by its selective distribution of its APIs, resulting in stifled industry innovation and monopoly control over the Panasonic IFE Software and Media Services Market.</p>\n<p>Perhaps the worst and most grave allegation in the complaint is that, in addition to locking up the source code and doling out access to the APIs, Panasonic also maliciously sabotaged its own APIs in order to give the appearance that it is the only reliable software service provider for its hardware, which CoKinetic claims is inferior and sold at monopolistic prices.</p>\n<blockquote><p>Panasonic also is able to use its control over the Linux-Based Panasonic Core Software in order to make ongoing, undisclosed, and often malicious modifications to its source code, deliberately “breaking” Panasonic’s own APIs in order to purposely and maliciously sabotage the performance of third-party software products that Panasonic deems a competitive threat — particularly CoKinetic software.</p></blockquote>\n<p>In the introduction to the case, CoKinetic cites a litany of anti-competitive conduct the company has engaged in over the past decade before detailing the current allegations. The case is not purely an open source license dispute, as the plaintiff also alleges that Panasonic abused regulatory processes, engaged in acts of corporate espionage, defamed CoKinetic, paid commercial bribes, and employed unlawful means to monopolize the Panasonic IFE Software and Media Services Market.</p>\n<p>CoKinetic is seeking compensatory damages for Panasonic&#8217;s GPL ongoing GPL breaches. The specific amount would be determined at the trial but the company believes it to be in excess of $100 million. The company also wants the court to compel Panasonic to publicly disclose and distribute the source code.</p>\n<p>This isn&#8217;t a case where distributing the source code is just a small sticking point or just a matter of principle. It has the potential to open up the IFE industry for faster progress and greater innovation. Many reading this article have undoubtedly used Panasonic&#8217;s IFE products when flying with the company&#8217;s customers, which include Emirates Airlines, Delta Air Lines, Virgin America, and United Airlines. With the source code available, airline customers could remove Panasonic&#8217;s software from their IFE hardware and replace it with their own software solutions.</p>\n<p>The <a href=\"https://www.unitedstatescourts.org/federal/nysd/470007/1-0.html\" target=\"_blank\">complaint</a>, which was filed in the Southern District of New York in March, demands a jury trial. An initial pre-trial conference was held in May, but the case has been slow moving. The Court gave a deadline for the Defendant to file its motion to dismiss, but deadlines have since been extended. The Court also strongly recommended that the two parties retain a private mediator but it&#8217;s not clear how outside mediation could solve such a far-reaching matter that impacts so many vendors. <a href=\"https://www.pacermonitor.com/public/case/20747763/CoKinetic_Systems,_Corp_v_Panasonic_Avionics_Corporation\" target=\"_blank\">Additional documents</a> are due over the next few months, so it will be some time before there are updates on the progress of the case.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 04:39:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: AJ Morris Acquires iThemes Exchange\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73071\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/aj-morris-acquires-ithemes-exchange\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3545:\"<p>In 2013, iThemes <a href=\"https://wptavern.com/ithemes-launches-e-commerce-plugin-exchange\">released Exchange</a>, an e-commerce platform that aimed to make selling online as simple as possible. Today, the company <a href=\"https://ithemes.com/2017/07/13/ithemes-exchange-new-home-exchangewpcom/\">announced</a> that AJ Morris, Product Manager at Liquid Web, has taken over the project.</p>\n<p>&#8220;When approached about taking over iThemes Exchange early this year, we wanted to be sure the project and our customers went into very competent hands, someone who will love and care for them as much as we do,&#8221; Cory Miller, founder of iThemes, said.</p>\n<p>&#8220;Having spent four and a half years investing in the project and in you and your success, we did not take this lightly.</p>\n<p>&#8220;After numerous conversations over the past several months, we believe the best home for Exchange is with ExchangeWP LLC led by AJ Morris.&#8221;</p>\n<p>Everything iThemes Exchange related will transition to <a href=\"https://exchangewp.com/\">ExchangeWP.com</a>. Toolkit, Plugin Suite, Exchange Pro Pack, and iThemes Exchange Add-on customers will be given accounts for free support and upgrades through August 2018 at ExchangeWP.com.</p>\n<p>Beginning today, customers will no longer be able to purchase Exchange or its add-ons through iThemes as the company transfers licenses and products to ExchangeWP. However, iThemes will continue to provide customer support until the transition is completed, expected to happen in early August.</p>\n<p>Morris says he&#8217;ll continue to focus on making e-commerce simple and will provide regular updates to customers to provide insight into what goes into transition a product from one company to another and where the product is heading.</p>\n<p>&#8220;These days, it’s very easy to get WordPress up and running so you can start blogging,&#8221; Morris said. &#8220;But when you want to add e-commerce to the mix, it&#8217;s a bit different.&#8221;</p>\n<p>&#8220;With big players like WooCommerce out there, it becomes too much too quickly for the average content producer to get their store up and running.</p>\n<p>&#8220;Exchange is going to continue focusing on the independent publishers that want to keep the revenue they can, while providing a simplistic experience in an easy-to-use e-commerce plugin that will help get their stores online quickly.&#8221;</p>\n<p>Allowing Morris to take over the project frees up resources for iThemes to focus on three of its flagship products; BackupBuddy, iThemes Security, and iThemes Sync. In addition to their core products, the company says it will soon release a new project.</p>\n<p>&#8220;My job as CEO is to be a steward of the time and resources we have at iThemes in order to serve you best,&#8221; Miller said.</p>\n<p>&#8220;We’ve realized for a while that it was past time for us to refocus our finite resources on the projects that have the most growth and potential for our company and you.</p>\n<p>&#8220;That meant we either needed to find a new home for Exchange or sunset the project. I’m thankful we didn’t have to do the latter.&#8221;</p>\n<p><a href=\"https://ajmorris.me/\">Morris</a> is a <a href=\"https://profiles.wordpress.org/ajmorris\">long-time member</a> of the WordPress community and <a href=\"https://wordpress.tv/speakers/aj-morris/\">has spoken</a> at several WordCamps. With Morris taking over the reigns, existing customers won&#8217;t have to worry about finding a replacement.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2017 01:00:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: Akismet WordPress Plugin 3.3.3 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1953\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://blog.akismet.com/2017/07/13/akismet-wordpress-plugin-3-3-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1413:\"<p>Version 3.3.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>For a full list of the changes in this release, see the <a href=\"https://plugins.trac.wordpress.org/log/akismet/trunk?action=stop_on_copy&mode=stop_on_copy&rev=1695995&stop_rev=1676206&limit=100&sfp_email=&sfph_mail=\">revision log</a>, but here are some notable fixes:</p>\n<ul>\n<li>The number of spam blocked that is displayed on the WordPress dashboard will now be more accurate and updated more frequently.</li>\n<li>We fixed a bug in the Akismet widget that could cause PHP warnings.</li>\n<li>We&#8217;ve improved Akismet&#8217;s compatibility with other plugins by removing a workaround that only targeted very old versions of WordPress.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1953/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1953/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1953&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Jul 2017 22:00:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WordPress.com Introduces Scheduling for Social Media Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/wordpress-com-introduces-scheduling-for-social-media-posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2916:\"<p>WordPress.com is venturing into the realm of social media management applications with its latest feature that allows users to <a href=\"https://en.blog.wordpress.com/2017/07/13/you-can-now-schedule-your-social-media-posts-from-wordpress-com/\" target=\"_blank\">schedule Facebook, Twitter, and LinkedIn updates for individual posts</a>. This goes beyond the basic <a href=\"https://jetpack.com/support/publicize/\" target=\"_blank\">Publicize</a> functionality that automatically shares posts to connected accounts as soon as they are published, giving users the ability to automate their content marketing to social networks for the most optimal time for sharing.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/schedule-sharing.png?ssl=1\"><img /></a></p>\n<p>It&#8217;s difficult to know how a post will appear on social networks once it has automatically been shared, which is one reason why many people choose to manually share a post for the best presentation. You want to ensure that the right thumbnail will show up with a message customized for each network&#8217;s particular audience. The new social scheduling feature on WordPress.com includes a built-in preview screen so users can see what the post will look like once it is shared to the network and then make any necessary tweaks.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/social-sharing-previews.png?ssl=1\"><img /></a></p>\n<p>Scheduling social media posts is available on WordPress.com for Premium and Business plan users and for Jetpack Professional and Premium users. On the Premium plan level, which comes in at ~$9/month, users pay less than they would for scheduling apps like Buffer, Hootsuite, or Sprout Social while also getting access to more commercial WordPress features.</p>\n<p>To truly become a realistic replacement for these types of social media marketing apps, WordPress.com would need to offer better analytics tied into the new sharing feature to show how posts are performing at different times and networks. Although WordPress.com allows for unlimited scheduling and users, it would also need to allow sharing to more networks to be more competitive against these apps. For users who don&#8217;t need all of that data but just want the scheduling feature, a paid Jetpack or WordPress.com plan is a more affordable option.</p>\n<p>Several other self-hosted WordPress plugins already <a href=\"https://wordpress.org/plugins/search/schedule+social+media/\" target=\"_blank\">offer scheduling social media posts</a> for free and some even integrate the social accounts with Google Analytics. The addition of this feature to Jetpack commercial plans may not be as compelling for self-hosted users who can already find this for free, but it adds value for existing Jetpack customers who may now be able to replace a plugin or third-party service.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Jul 2017 19:59:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WPWeekly Episode 281 – In Memory of Jesse Petersen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=73045&preview=true&preview_id=73045\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/wpweekly-episode-281-in-memory-of-jesse-petersen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2501:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"https://www.wpsteward.com/\">Ben Meredith</a>. Over the past few years, Ben has established a friendly and professional relationship with <a href=\"https://twitter.com/jpetersen\">Jesse Petersen</a>, <a href=\"https://wptavern.com/jesse-petersen-founder-of-genesis-the-me-passes-away\">who passed away</a> due to complications from Cystic Fibrosis.</p>\n<p>Ben shares his unique perspective on who Petersen was as a person and describes the challenges of taking over his business. We emphasized how important it is to create a file with passwords and other login information to help appointed people access a person&#8217;s digital presence. We also discuss if saying a person lost their battle with an illness is a negative thing to say.</p>\n<p>To close out the show, we talk about net neutrality, 10up acquiring Lift UX, and Let&#8217;s Encrypt offering wildcard certificates in 2018.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/automattic-releases-net-neutrality-wordpress-plugin-ahead-of-july-12-protest\">Automattic Releases Net Neutrality WordPress Plugin Ahead of July 12 Protest</a><br />\n<a href=\"https://wptavern.com/10up-acquires-lift-ux\">10up Acquires Lift UX</a><br />\n<a href=\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\">Let’s Encrypt Passes 100 Million Certificates Issued, Will Offer Wildcard Certificates in January 2018</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://www.newlungsfor.me/\">Newlungsfor.me</a> is a place to read about Jesse’s battle with Cystic Fibrosis along with <a href=\"http://www.cffatboy.com/\">CFfatboy.com</a>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 19th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #281:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Jul 2017 22:00:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: Sustain Event Draws 100 Attendees to Discuss the Sustainability of Open Source Software\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/sustain-event-draws-100-attendees-to-discuss-the-sustainability-of-open-source-software\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5136:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/sustain.png?ssl=1\"><img /></a></p>\n<p>More than 100 open source project maintainers and industry leaders gathered at the GitHub headquarters in San Francisco last month to discuss the long-term sustainability of open source software. The <a href=\"https://sustainoss.org/\" target=\"_blank\">Sustain</a> event, put on by a relatively new organization called SustainOSS, did not follow a traditional conference format with talks and keynotes but was intentionally left unstructured to foster open discussion.</p>\n<p>Organizers expected 50 attendees but ended up with double their estimates. The $50 ticket price covered day care, travel assistance, food, and other miscellaneous event costs. Attendees shared insights from their diverse backgrounds and participated in collaborative working sessions and various discussions facilitated by organizers.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Defining a common unified theory of open source sustainability is super hard! <a href=\"https://twitter.com/hashtag/sustainoss?src=hash\">#sustainoss</a> <a href=\"https://t.co/2PznN2oZGM\">pic.twitter.com/2PznN2oZGM</a></p>\n<p>&mdash; Lou Huang (@saikofish) <a href=\"https://twitter.com/saikofish/status/876863604670304257\">June 19, 2017</a></p></blockquote>\n<p></p>\n<p>Co-organizer Alanna Irving shared in her <a href=\"https://medium.com/open-collective/we-gathered-100-open-source-sustainers-c24f571447a4\" target=\"_blank\">wrap-up post</a> how the team <a href=\"https://opencollective.com/sustainoss\" target=\"_blank\">used Open Collective</a> to make the event&#8217;s finances transparent and offer payment options for participants and sponsors. The service has recently added a new feature that allows collectives to communicate event info and sell tickets.</p>\n<p>Representatives from large tech companies attended the event, as well as contributors from various open source projects and foundations, including Google, Amazon, Paypal, Airbnb, Red Hat, JS Foundation, Linux Foundation, Apache Foundation, npm, FontAwesome, GulpJS, and more. Irving published a few insights from the discucssions that she and her colleagues are applying to their work at Open Collective:</p>\n<ul>\n<li>Introducing money in open source is less controversial than we thought. The main issues are related to how.</li>\n<li>The coder role is only one among many equally important roles: community builder (for onboarding and creating a healthy ecosystem), documentation writer, fundraiser, and public advocate.</li>\n<li>Companies want to support open source communities. This is now more clear than ever.</li>\n<li>It’s easier for some companies to make in-kind donations rather than cash. We’re working on making this easier, and will share more about it soon.</li>\n<li>Projects that companies publicly support need to have accountability and respect codes of conduct, in order to avoid PR nightmares.</li>\n</ul>\n<p>On the day following the event, SustainOSS organizers tweeted out a link to <a href=\"https://github.com/sustainers/discussions\" target=\"_blank\">a new forum on GitHub for discussing open source sustainability</a>. Proposed topics include fundraising, governance, contributor retention, productivity, and managing corporate relationships. It was created to offer a safe place for open source sustainers to collaborate with each other in the open and contributors have already submitted some practical ideas for discussion, such as <a href=\"https://github.com/sustainers/discussions/issues/4\" target=\"_blank\">adding a standardized FUNDING or SUSTAINABILITY file to repositories</a>.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Busy day, got a lot done. Stay tuned. <a href=\"https://twitter.com/hashtag/sustainoss?src=hash\">#sustainoss</a> <a href=\"https://twitter.com/hashtag/sustain17?src=hash\">#sustain17</a> <a href=\"https://t.co/CtWs82FXAn\">pic.twitter.com/CtWs82FXAn</a></p>\n<p>&mdash; SustainOSS (@SustainOSS) <a href=\"https://twitter.com/SustainOSS/status/876996636391559169\">June 20, 2017</a></p></blockquote>\n<p></p>\n<p>Sustain was inspired by inspired by the <a href=\"https://maintainerati.org/\" target=\"_blank\">Maintainerati</a> event held in London in May 2017. The similarly unstructured event brought together open source maintainers who share similar challenges. GitHub also hosted the <a href=\"https://events.chef.io/events/wontfix-cabal/\" target=\"_blank\">Wontfix Cabal</a> event at its San Francisco headquarters in February, which highlighted some of the difficulties related to maintaining OSS projects. Events focused on maintaining and funding OSS have been popping up in the past two years, as more people become aware that open source infrastructure has a critical sustainability problem.</p>\n<p>The SustainOSS organizers will be releasing a more detailed article on the event soon. They are also open to considering hosting other Sustain events in different locations. Follow <a href=\"https://twitter.com/SustainOSS\" target=\"_blank\">@SustainOSS</a> on Twitter for the latest updates.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Jul 2017 20:38:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"HeroPress: How I found myself in WordPress – Как я нашел себя в WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1962\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://heropress.com/essays/i-found-myself-in-wordpress/?utm_source=rss&utm_medium=rss&utm_campaign=i-found-myself-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22562:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/07/071217-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress remains the place where you can find yourself, and help make life a little better.\" /><p><a href=\"http://heropress.com/feed/#russian\">Это эссе также доступно на русском языке.</a></p>\n<h3>About Russia and familiarity with technologies</h3>\n<p>Russia is a very large and very different country. The basic population, as well as technological development, is concentrated in the central part of the country, in &#8220;city-states&#8221;: Moscow and St. Petersburg. Other regions are much less developed: lower wages, worse and more expensive infrastructure, fewer IT-vacancies and activities.</p>\n<p>I was born and grew up in a remote part of Russia &#8211; in the Far East, in one of the industrial cities, which is located in 7 time zones and 9000 kilometers from Moscow. The Internet, like other technologies, reached there with a significant delay and for a lot of money (unlimited Internet at a speed of 64 kb/s appeared only in 2007), Therefore, at first, the basics of site building had to be learned in snatches with the help of dial-up.</p>\n<p>The first site I did in school. It was built using simple HTML and CSS. But even in this form, it was very impressive and exciting. Then such sites were popular and periodically on the Internet I <a href=\"http://softphoenix.narod.ru/about.htm\">met guys</a> of my age who like me comprehended the science of site building.<br />\nI was lucky to find a like-minded person, with whom we were able to develop together for some time and even launch a joint website.<br />\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\"><img class=\"aligncenter wp-image-1963 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\" alt=\"\" width=\"962\" height=\"637\" /></a></p>\n<h3>University and start of work</h3>\n<p>Admission to the computer faculty of the university allowed to more specifically address the issues of web development: to learn PHP and MySQL, to get acquainted with a couple of CMS and to make <a href=\"http://web.archive.org/web/20100207131804/http://www.compnot.ru:80/\">my first blog</a> on WordPress :). As far as I remember, the blog worked on some WordPress assembly using version 2.9. If you count from that moment, it turns out that I somehow have been working with WordPress for almost 8 years.</p>\n<p>In those days, <a href=\"http://ru.wordpress.org\">ru.wordpress.org</a> was just born and there was no main site on the Russian-language Internet. It was a time of amateur assemblies, amateur translations and even <a href=\"http://book.max-3000.com/page/istorija-sozdanija\">alternatives of WordPress</a>, aimed to the Russian segment of the Internet.</p>\n<p>By the will of fate, my first place of work related to website development was the web studio that used Joomla and Drupal. Then there were a few more places of work, during which time WordPress then turned into the main working tool, then returned to the category of extra work and hobbies.</p>\n<p>The turning point was the decision to move to Moscow and a full transition to WordPress in freelance format.</p>\n<h3>Moving to Moscow</h3>\n<p>The scenario of moving to Moscow or St. Petersburg is quite popular among IT specialists of my native region. This is a great chance to find interesting and highly paid job, get acquainted with a lot of IT specialists, including narrow ones, and develop in the area of interest.</p>\n<p>In Moscow, I moved with remote work and I do not have personal experience of employment in this city, but my wife and most of the acquaintances were satisfied with the options found.</p>\n<p>After about six months of living in Moscow, I was even more thirsty for adventure — to become a freelancer and completely concentrate on WordPress. The ability to plan time independently gives additional space for maneuvers and time for reflection. In my case, this led to an increase in activity in the WordPress community.</p>\n<h3>Participate in the WordPress community</h3>\n<p>Actively participate in the life of the community, I started about 1.5 years ago. Initially, these were the replies at the support forum, then the development of my plugins, after which I decided to try myself in translating the extensions into Russian and recording training videos for Russian-speaking users.</p>\n<p>Over time, it turned into a kind of hobby or even a way of life. Every day I read a lot of posts from users on the support forums and try to help resolve their issues, check and correct the added translation lines, periodically record and post training videos.</p>\n<p>Communication with users is very helpful. You are one of the first to learn about the problems and ways to solve them, you can quickly correct some incorrect or incorrect translation. Also, over time, a list of popular questions accumulates, which can be turned into training articles and videos. In turn, the creation of articles and videos helps to structure knowledge and understand the details.</p>\n<p>On <a href=\"http://ru.wordpress.org\">ru.wordpress.org</a> a great team of moderators and translation editors has gathered. We regularly communicate in Slack, some I meet on WordCamp.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1.jpg\"><img class=\"aligncenter size-large wp-image-1967\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1-1024x768.jpg\" alt=\"Denis and Sergey\" width=\"960\" height=\"720\" /></a></p>\n<p>In November 2016 I took part in the Global Day of Translation 2. It was an unusual experience: broadcasting from around the world, feeling the scale of what was happening and the excitement of the translation. At that time we took 6th place as the most active locale and attracted 7 new translators.</p>\n<h3>Meetups and WordCamp</h3>\n<p>In Russia there are not so many cities where WordPress-meetups are held, and WordCamp is held only in Moscow. But despite all this, these events are a great opportunity to be among WordPress lovers, to see live people with whom I have only spoken on the network before, and just feel the spirit of WordPress :).</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\"><img class=\"aligncenter wp-image-1968 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\" alt=\"Three big cheery guys at WordCamp\" width=\"1000\" height=\"667\" /></a></p>\n<p>This year I plan to visit WordCamp Moscow for the third time. I visit WordCamp as a participant, but I hope someday I will find a topic close to me and I will decide to apply for a presentation :). I think it will be interesting.</p>\n<h3>Conclusion</h3>\n<p>At the moment I&#8217;m a full-time freelancer. This allows me to quite well combine work and activities in the community. I like to <a href=\"https://www.youtube.com/channel/UCLkgL32ycnfl1hs0nJJD6Og\">share knowledge</a> and make WordPress more accessible for Russian users.</p>\n<p>Many resources of WordPress are dominated by English, and some, for example, as <a href=\"https://developer.wordpress.org/\">developer.wordpress.org</a> or &#8220;Handbook&#8221; are not available for localization. I hope, in the future this will change and we will be able to expand our activities.</p>\n<p>In any case, WordPress remains the place where you can find yourself and help make life a little better for yourself and the rest of the participants.</p>\n<hr />\n<h1 id=\"russian\">Как я нашел себя в WordPress</h1>\n<h3>Про Россию и знакомство с технологиями</h3>\n<p>Россия очень большая и очень разная страна. Основное население, как и технологическое развитие, сосредоточено в центральной части страны, в &#8220;городах-государствах&#8221;: Москве и Санкт-Петербурге. Остальные регионы развиты значительно слабее: ниже зарплаты, хуже и дороже инфраструктура, меньшее количество IT-вакансий и мероприятий.</p>\n<p>Я родился и вырос в отдаленной части России — на Дальнем Востоке, в одном из промышленных городов, который расположен в 7 часовых поясах и 9000 километров от Москвы. Интернет, как и другие технологии, доходили туда с существенным опозданием и за большие деньги (безлимитный интернет на скорости 64 кб/сек появился только в 2007 году), поэтому, по началу, азы сайтостроения приходилось познавать урывками с помощью dial-up.</p>\n<p>Первый сайт я сделал ещё в школе. Он был построен на простейшем HTML и CSS. Но даже в таком виде, это было очень впечатляюще и захватывающе. Тогда такие сайты были популярны и, периодически на просторах интернета, я <a href=\"http://softphoenix.narod.ru/about.htm\">встречал ребят</a> моего возраста, которые, как и я, постигали науку сайтостроения.</p>\n<p>Мне повезло найти единомышленника, с которым мы смогли некоторое время вместе развиваться и даже запустить совместный сайт.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\"><img class=\"aligncenter size-full wp-image-1963\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img1-min.png\" alt=\"Very old style web site.\" width=\"962\" height=\"637\" /></a></p>\n<h3>Университет и начало работы</h3>\n<p>Поступление на компьютерный факультет университета позволило более предметно заняться вопросами веб-разработки: изучить PHP и MySQL, познакомиться с парой CMS и завести <a href=\"http://web.archive.org/web/20100207131804/http://www.compnot.ru:80/\">свой первый блог</a> на WordPress :). Насколько я помню, блог работал на какой-то сборке WordPress, использующей версию 2.9. Если вести отсчет с того момента, то получается, что я так или иначе работаю с WordPress уже почти 8 лет.</p>\n<p>В те времена <a href=\"http://ru.wordpress.org/\">ru.wordpress.org</a> только зарождался и в русскоязычном интернете не было какой-то основной площадки. Это было время любительских сборок, любительских переводов и даже <a href=\"http://book.max-3000.com/page/istorija-sozdanija\">альтернатив WordPress</a>, ориентированных на русский сегмент интернета.</p>\n<p>Волею судеб, моим первым местом работы, связанным с разработкой сайтов, стала веб-студия, использовавшая Joomla и Drupal. Затем было ещё несколько мест работы, в течение которых WordPress то превращалась в основной рабочий инструмент, то возвращалась в разряд дополнительной работы и хобби.</p>\n<p>Переломным моментом стало решение о переезде в Москву и полный переход на WordPress в фриланс-формате.</p>\n<h3>Переезд в Москву</h3>\n<p>Сценарий переезда в Москву или Санкт-Петербург достаточно популярен среди IT-специалистов моего родного региона. Это отличный шанс найти интересную и высокооплачиваемую работу, познакомится со множеством IT-специалистов, в том числе узких, и развиться в интересующей области.</p>\n<p>В Москву я переезжал вместе с удаленной работой и у меня нет личного опыта трудоустройства в этом городе, но моя жена и большинство знакомых остались довольны найденными вариантами.</p>\n<p>Примерно через полгода проживания в Москве, меня обуздала ещё большая жажда приключений — стать фрилансером и полностью сосредоточиться на WordPress. Возможность самостоятельно планировать время дает дополнительное пространство для маневров и время на размышления. В моем случае, это привело к увеличению активности в сообществе WordPress.</p>\n<h3>Участие в сообществе WordPress</h3>\n<p>Активно участвовать в жизни сообщества я начал примерно 1.5 года назад. Вначале это были ответы на форуме поддержки, затем разработка своих плагинов, после чего я решил попробовать себя в переводе расширений на русский язык и записи обучающих видео для русскоязычных пользователей.</p>\n<p>Со временем это превратилось в некое хобби или даже образ жизни. Каждый день я читаю множество сообщений от пользователей на форумах поддержки и пытаюсь помочь решить их вопросы, проверяю и корректирую добавленные строки перевода, периодически записываю и выкладываю обучающие ролики.</p>\n<p>Общение с пользователями очень помогает. Ты одним из первых узнаешь о проблемах и способах их решения, можешь оперативно исправить какой-то неверный или некорректный перевод. Также, со временем накапливается список популярных вопросов, которые можно превращать в обучающие статьи и ролики. В свою очередь, создание статей и видео помогает структурировать знания и разобраться в деталях.</p>\n<p>На <a href=\"http://ru.wordpress.org/\">ru.wordpress.org</a> собралась отличная команда модераторов и редакторов переводов. Мы регулярно общаемся в Slack, некоторых я встречаю на WordCamp.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1.jpg\"><img class=\"aligncenter size-large wp-image-1967\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img2-min-1-1024x768.jpg\" alt=\"Denis and Sergey\" width=\"960\" height=\"720\" /></a></p>\n<p>В ноябре 2016 я принимал участвовали в Глобальном дне перевода 2. Это был необычный опыт: трансляции со всего света, ощущение масштабности происходящего и азарта перевода. В тот раз мы заняли 6 место как самый активный язык и привлекли 7 новых переводчиков.</p>\n<h3>Митапы и WordCamp</h3>\n<p>В России не так много городов, где проводятся WordPress-митапы, а WordCamp проводится только в Москве. Но не смотря на всё это, данные мероприятия — отличная возможность побыть среди любителей WordPress, увидеть в живую людей, с которыми до этого общался только по сети, и просто почувствовать дух WordPress :).</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\"><img class=\"aligncenter size-full wp-image-1968\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/img3-min.jpg\" alt=\"\" width=\"1000\" height=\"667\" /></a></p>\n<p>В этом году я планирую посетить WordCamp Moscow в третий раз. Я посещаю WordCamp как участник, но надеюсь когда-нибудь найду близкую мне тему и решусь подать заявку на выступление :). Я думаю, это будет интересно.</p>\n<h3>Заключение</h3>\n<p>На данный момент я — фул-тайм фрилансер. Это позволяет мне достаточно неплохо совмещать работу и деятельность в сообществе. Мне нравится <a href=\"https://www.youtube.com/channel/UCLkgL32ycnfl1hs0nJJD6Og\">делиться знаниями</a> и делать WordPress доступнее для русскоязычных пользователей</p>\n<p>На многих ресурсах WordPress преобладает английский язык, а некоторые, например, как <a href=\"https://developer.wordpress.org/\">developer.wordpress.org/</a> или &#8220;Handbook&#8221; вовсе недоступны для локализации. Надеюсь, в будущем это изменится и мы сможем расширить свою деятельность.</p>\n<p>В любом случае, WordPress остается тем местом, где можно найти себя и помочь сделать его чуточку лучше для себя и остальных участников.</p>\n<h2>участник</h2>\n<p><img class=\"alignleft size-medium wp-image-1961\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/photo-min-300x300.jpg\" alt=\"Denis Yanchevskiy\" width=\"300\" height=\"300\" /></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h3>Денис Янчевский</h3>\n<ul>\n<li><a href=\"http://denisco.pro/\">http://denisco.pro</a></li>\n<li><a href=\"http://twitter.com/dyanchevskiy\">@dyanchevskiy</a></li>\n<li><a href=\"http://wordpress.tv/speakers/denisco/\">WordPress.tv</a></li>\n<li><a href=\"http://profiles.wordpress.org/denisco/\">WordPress.org Profile</a></li>\n</ul>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20I%20found%20myself%20in%20WordPress%20%2D%20%D0%9A%D0%B0%D0%BA%20%D1%8F%20%D0%BD%D0%B0%D1%88%D0%B5%D0%BB%20%D1%81%D0%B5%D0%B1%D1%8F%20%D0%B2%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fi-found-myself-in-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fi-found-myself-in-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fi-found-myself-in-wordpress%2F&title=How+I+found+myself+in+WordPress+%26%238211%3B+%D0%9A%D0%B0%D0%BA+%D1%8F+%D0%BD%D0%B0%D1%88%D0%B5%D0%BB+%D1%81%D0%B5%D0%B1%D1%8F+%D0%B2+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/i-found-myself-in-wordpress/&media=https://heropress.com/wp-content/uploads/2018/07/071217-150x150.jpg&description=How I found myself in WordPress - Как я нашел себя в WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How I found myself in WordPress &#8211; Как я нашел себя в WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/i-found-myself-in-wordpress/\" title=\"How I found myself in WordPress &#8211; Как я нашел себя в WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/i-found-myself-in-wordpress/\">How I found myself in WordPress &#8211; Как я нашел себя в WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Jul 2017 12:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Denis Yanchevskiy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: Automattic Releases Net Neutrality WordPress Plugin Ahead of July 12 Protest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/automattic-releases-net-neutrality-wordpress-plugin-ahead-of-july-12-protest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2074:\"<p>Automattic <a href=\"https://en.blog.wordpress.com/2017/07/11/join-us-in-the-fight-for-net-neutrality/\" target=\"_blank\">announced</a> its intent to protest the FCC&#8217;s attack on net neutrality today by making a way for the millions of WordPress.com users to join in. The company&#8217;s logo has been listed on the <a href=\"https://www.battleforthenet.com/july12/\" target=\"_blank\">Save Net Neutrality</a> event website for some time but it had yet to announce how it would be participating. WordPress.com users are encouraged to send a message to the FCC and also enable the Fight for Net Neutrality Plugin via the dashboard Settings screen.</p>\n<p>The plugin is open source and <a href=\"https://wordpress.org/plugins/net-neutrality/\" target=\"_blank\">available to self-hosted users on WordPress.org</a>. Unlike the existing plugins that support the event on July 12 by presenting visitors with a banner to raise awareness, Automattic&#8217;s plugin simulates what life might be like in the &#8220;slow lane&#8221; if the FCC abandons the principle of net neutrality. It replaces a few of the posts on your site with a “Still Loading” spinner. This plugin doesn&#8217;t seem to offer a way to test it ahead of the event, but it essentially displays a message at the bottom of your website and slows down some of your posts.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/net-neutrality-plugin.png?ssl=1\"><img /></a></p>\n<p>The plugin will automatically be disabled after the event has concluded, so both WordPress.com and self-hosted users do not have to worry about turning it off and can remove it later. If you are uneasy about slowing down some of your posts as part of the protest and feel more comfortable displaying a modal or a widget, check out the <a href=\"https://wordpress.org/plugins/cat-signal/\" target=\"_blank\">Internet Defense League Cat Signal</a> or the <a href=\"https://wordpress.org/plugins/fftf-alerts/\" target=\"_blank\">Fight for the Future Alerts</a> plugins as alternatives.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Jul 2017 05:07:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: VersionPress 4.0 Beta Adds User-Editable Location for Plugin Definitions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72939\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/versionpress-4-0-beta-adds-user-editable-location-for-plugin-definitions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2944:\"<p><a href=\"https://github.com/versionpress/versionpress/releases/tag/4.0-beta\">VersionPress 4.0 beta</a> is available for testing. It includes a number of improvements, most notably, the ability to load plugin definitions from a user-defined location within the wp-content directory.</p>\n<p><a href=\"https://github.com/versionpress/versionpress/blob/aba96d3f63bc5d84d49019bffa47252f87734288/docs/Plugin-Support.md\">Plugin definitions</a> are files used to understand data, actions, shortcodes, and other things plugins do in order to automatically provide version control for them.</p>\n<p>According to Borek Bernard, co-founder of VersionPress:</p>\n<blockquote><p>If you create a folder WP_CONTENT_DIR/.versionpress/plugins/woocommerce and put <a href=\"https://github.com/versionpress/versionpress/blob/aba96d3f63bc5d84d49019bffa47252f87734288/docs/Plugin-Support.md\">definition files</a> like schema.yml or actions.yml there, VersionPress will use and actually prefer it over the bundled definitions if they exist.</p></blockquote>\n<img />User Defined Location of Plugin Definition File\n<p>Support for WooCommerce and Jetpack are included in 4.0 Beta 1. VersionPress will automatically detect the definition file as long as each plugin has a .versionpress folder in it.</p>\n<p>With the release of 4.0 Beta, Bernard says a <a href=\"https://github.com/versionpress/versionpress/issues/1243\">repository</a> containing plugin definitions is next on the list and is encouraging plugin authors to contribute to the project.</p>\n<p>&#8220;The final step is to have an online repository of the definitions,&#8221; Bernard said. &#8220;It will be open to anyone to contribute, not just plugin authors, and used by VersionPress transparently.&#8221;</p>\n<p>For insight on how to create definitions, developers can look at <a href=\"https://github.com/versionpress/versionpress/tree/aba96d3f63bc5d84d49019bffa47252f87734288/plugins/versionpress/.versionpress\">WordPress core</a> and <a href=\"https://github.com/pavelevap/versionpress-for-woocommerce\">WooCommerce</a> for real-world examples.</p>\n<p>Other major changes include full support for WordPress 4.7 and 4.8, adoption of <a href=\"https://github.com/versionpress/versionpress/projects/2\">GitHub projects</a> to help manage the development process, and <a href=\"https://github.com/versionpress/versionpress/issues?q=project%3Aversionpress%2Fversionpress%2F2+sort%3Acreated-desc+label%3Abug\">a number of bugs fixed</a>.</p>\n<p>Developers and users can download <a href=\"https://github.com/versionpress/versionpress/releases/tag/4.0-beta\">4.0 Beta</a> from GitHub. Users are encouraged to test the plugin in a staging environment as it&#8217;s not ready to be used on live sites. If you encounter an error, you can report it by creating a new <a href=\"https://github.com/versionpress/versionpress/issues\">Issue request</a> on the project&#8217;s GitHub page.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Jul 2017 04:26:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WPTavern: 10up Acquires Lift UX\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72917\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wptavern.com/10up-acquires-lift-ux\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4294:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/07/10up-logo.png?ssl=1\"><img /></a></p>\n<p>10up, a leading WordPress design and development agency, has <a href=\"https://10up.com/blog/2017/10up-acquires-lift-ux/\" target=\"_blank\">acquired Lift UX</a>, a smaller user experience design-driven agency that will bolster the company&#8217;s existing Experience design team. Lift founders Chris Wallace and Brad Miller will join 10up&#8217;s 120+ person distributed team, along with Lift&#8217;s director of technology, Christian Chung, and front-end developer Anthony Garand.</p>\n<p>10up is acquiring the Lift UX brand, hiring four team members, and will also take possession of <a href=\"https://remotejobs.com/\" target=\"_blank\">RemoteJobs.com</a>, which will continue operating independently as a remote job board. The Lift UX brand will be dissolved and clients and projects are in the process of transitioning over to 10up.</p>\n<p>&#8220;We were always looking for agencies to partner with and when I reached out to 10up I was looking to build a relationship to help work on UX design projects,&#8221; Miller said. &#8220;10up has a strong engineering background and I felt like having them as a partner would be huge for our agency. Jake and I quickly realized that Lift UX and 10up had so many similar processes that it sounded like our two companies were the same but just different in size.&#8221;</p>\n<p>With similar expertise serving large clients in the WordPress space, the two companies were bound to end up competing on different projects, which happened during the course of their conversations spanning a year leading up to the deal. Miller said 10up founder Jake Goldman proposed a merger/acquisition type of approach.</p>\n<p>&#8220;I ended up speaking to them off and on for the next couple of weeks and things got pretty serious when we were competing for some projects,&#8221; Miller said. &#8220;I was of course flattered by the offer. Jake and John were awesome. We enjoyed our conversations and decided to do an onsite to discuss things in more detail. They made an offer after our onsite and Chris and I decided to accept it.&#8221;</p>\n<p>In 10up&#8217;s announcement, Goldman said it &#8220;takes a special kind of chemistry and alignment for a deal like this to work.&#8221; The company&#8217;s acquisition of Lift is one of the biggest design-driven acquisitions in the WordPress ecosystem in awhile.</p>\n<p>&#8220;Adding more experience design expertise to our company DNA enhances our empathy and ability to collaborate with design partners in an era of interactive, responsive design where divisions between &#8216;design&#8217; and &#8216;engineering&#8217; have eroded,&#8221; Goldman said.</p>\n<p>Miller, who has worked with Wallace to build Lift into a top-notch design and user experience agency, said that securing design talent is a challenge in the industry. 10up adding a fellow competitor to its team is a stretegic move when design talent is in short supply.</p>\n<p>&#8220;I think it&#8217;s certainly hard to find quality talent that&#8217;s interested in a full time position,&#8221; Miller said. &#8220;There are some amazing designers out there but a lot of them are contractors/freelancers. 10up wanted to find a team that had a big focus on quality design and UX. It didn&#8217;t hurt that we were big on WordPress either.&#8221;</p>\n<p>Miller and Wallace founded Lift UX in 2009 and will be closing out a chapter of their entrepreneurial lives as the brand dissolves into 10up.</p>\n<p>&#8220;Basically we&#8217;ll fade into the 10up brand bringing along our team, portfolio, accolades, and ultimately our personality,&#8221; Miller said.</p>\n<p>Wallace said closing out this chapter is &#8220;definitely bittersweet,&#8221; but the team is excited to transition into 10up.</p>\n<p>&#8220;As a 6-7 person agency, we were all constantly being pulled in a million different directions,&#8221; Wallace said. &#8220;Joining 10up allows us to focus on our individual areas of specialization and excel in each. I love many aspects of entrepreneurship and small agency ownership but the idea of focusing on the success of the experience design team at 10up is something I am looking forward to.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jul 2017 22:02:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Donncha: Thank you Translators!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89500320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://odd.blog/2017/07/11/thank-you-translators/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1384:\"<p>Well, well. <a href=\"https://translate.wordpress.org/projects/wp-plugins/wp-super-cache\">WP Super Cache translations</a> are coming along well. 100% of strings in the development version are translated into Canadian English and Romanian! (That might change over the next few days as I have a couple of UI changes in mind, sorry!)</p>\n<p>Other languages like Persian, Japanese, Spanish, Russian and Italian are roaring along and sometimes only need a handful of words or sentences translated to hit that magic 100% too. The next version of the plugin will grab translations from WordPress.org if they&#8217;re available which is awesome for users around the world. We&#8217;re still shipping translation files but I think the release after that may ship without and rely entirely on the up-to-date online translations.</p>\n<p>So, thank you so much to the translators. Code is nigh on useless if the user and developer don&#8217;t speak the same language and the interface is incomprehensible. WP Super Cache has lots of technical language which must be a pain to translate. Your work is invaluable!</p>\n<p>Mulțumesc! متشکرم! ありがとうございました！¡Gracias! Спасибо! Grazie! Hvala ti! 谢谢！Vielen Dank!</p>\n\n<p><strong>Related Posts</strong><ul><li> No related posts</li></ul></p>\n<p><a href=\"https://odd.blog/\" rel=\"external nofollow\">Source</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jul 2017 10:44:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Interview with WordCamp US 2017 Organizers Dustin Meza and Laura Byrne-Cristiano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=72903&preview=true&preview_id=72903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/interview-with-wordcamp-us-2017-organizers-dustin-meza-and-laura-byrne-cristiano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2252:\"<p>While at WordCamp Europe I had the opportunity to interview <a href=\"https://twitter.com/dustinmeza\">Dustin Meza</a>, lead organizer of <a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a>, and <a href=\"https://twitter.com/newyorkerlaura\">Laura Byrne-Cristiano</a>, who is part of the marketing team for the event. The two are members of a 20-person team of organizers who will welcome an estimated 2,500 attendees to Nashville in December.</p>\n<p>Although the maximum capacity of the <a href=\"http://www.nashvillemusiccitycenter.com/\">Music City Center</a> venue is much higher than what is required by WordCamp US, the organizers want to make judicious use of the event&#x27;s resources to put on the best possible event for those who make the effort to attend.</p>\n<p>\"At the end of the day, it&#x27;s going to be the right size for the event,\" Byrne-Cristiano said. \"You could say, &#x27;Hey, we want 10,000 people, but that&#x27;s not the right size for the event. The right size is probably somewhere between 2,000 and 2,500. The venue can do more than that, but I don&#x27;t know that that&#x27;s the main goal. Bigger isn&#x27;t always better. Your main goal is the best event and quality for the people who are already there.\"</p>\n<p>Meza said he considers WordCamp US to be the premier event for North America and that it is there to represent the communities located in this area. He couldn&#x27;t share the full details of the unique things they are working on, but organizers plan to display and exhibit more information about the the various WordPress communities throughout North America.</p>\n<p>In the interview below, Meza and Byrne-Cristiano share a little bit about why they believe Nashville was selected and how welcoming the city is for people from different cultures. </p>\n<p>\"No matter where in the world you are coming from, there&#x27;s a place for you at WordCamp US,\" Byrne-Cristiano said.</p>\n<p>\"This is, by far, the best technology community I have ever been apart of, seeing how much everyone involved embraces new people &#8211; to me that is the big reason why I got involved,\" Meza said. \"I want to give this community the best event that we possibly can.\"</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jul 2017 02:16:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: WPCampus 2017 Will Be Streamed Live for Free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72896\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wptavern.com/wpcampus-2017-will-be-streamed-live-for-free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1020:\"<p><a href=\"https://2017.wpcampus.org/\">WPCampus</a>, a conference focused on using WordPress in higher education, takes place this Friday and Saturday in Buffalo, NY. If you&#8217;re unable to attend the event, WPCampus will be <a href=\"https://2017.wpcampus.org/watch/\">live streaming the sessions</a> for free.</p>\n<p>Visit the <a href=\"https://2017.wpcampus.org/watch/\">streaming page</a> on July 14th and 15th where viewers can choose between <a href=\"https://2017.wpcampus.org/schedule/\">three tracks of sessions</a> to watch. Viewers can also hang out in the <a href=\"https://wordcampus.slack.com/messages/C65Q1LHB9/\">#discuss-wpc17</a> Slack <a href=\"https://wpcampus.org/get-involved/\">channel</a> to discuss sessions with other people.</p>\n<p>Organizers are encouraging viewers to have watch parties at WordPress meetups and campuses. Sessions will be recorded and made available online at the end of the event. The stream starts on Friday, July 14th at 9 AM Eastern.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jul 2017 21:49:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Episodes 271-280 of WordPress Weekly are Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72884\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/episodes-271-280-of-wordpress-weekly-are-now-available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1011:\"<p>In the past two weeks, listeners have reported that recent episodes of <a href=\"https://wptavern.com/wordpress-weekly\">WordPress Weekly</a> are not available for download through Apple&#8217;s Podcasting app, Stitcher, and other applications.</p>\n<img />Podcast Download Error\n<p>I use <a href=\"http://vid2mp3.com/\">Vid2MP3</a> to convert YouTube videos into MP3 files. Starting with episode 271, there was an error in the conversion process. It was difficult to diagnose since the MP3 played fine in some browsers and applications but not in others.</p>\n<p>I have reconverted the affected episodes using a different service and uploaded the new files to the site. I confirmed that the episodes are accessible in Apple&#8217;s Podcasting application. If you still encounter a problem downloading these episodes, please leave a note in the comments along with which podcasting app you&#8217;re using. Thanks to all who reported the error and for listening to the show.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jul 2017 20:19:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"WPTavern: Automattic Joins Amazon, GitHub, Mozilla, reddit, and Twitter in July 12 Protest Against FCC’s Attack on Net Neutrality\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72799\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"https://wptavern.com/automattic-joins-amazon-github-mozilla-reddit-and-twitter-in-july-12-protest-against-fccs-attack-on-net-neutrality\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3713:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/day-of-action-banner.png?ssl=1\"><img /></a></p>\n<p>Major internet websites, companies, and organizations are banding together on Wednesday, July 12, to <a href=\"https://www.battleforthenet.com/july12/\" target=\"_blank\">protest the FCC&#8217;s attack on net neutrality</a>. These include Amazon, GitHub, Kickstarter, Vimeo, reddit, Mozilla, Twitter, Etsy, Spotify, Netflix, and many others. Automattic is joining these tech companies in the protest, as it has several times in the past, including the <a href=\"https://en.blog.wordpress.com/2014/09/09/fight-for-net-neutrality/\" target=\"_blank\">Internet Slowdown event in September 2014</a>. The company also <a href=\"https://transparency.automattic.com/2015/09/21/defending-net-neutrality/\" target=\"_blank\">reaffirmed its commitment to net neutrality in 2015</a> by filing an amicus brief with the Court of Appeals for the DC Circuit in the case of United States Telecom Assn. v. FCC, joined by Medium, Reddit, Squarespace, Twitter, and Yelp.</p>\n<p>Net neutrality is the principle that ensures people can communicate freely online by prohibiting Internet Service Providers (ISPs) and government entities from favoring, blocking, or throttling certain websites, or charging fees for premium content delivery. It guarantees individuals have free to access all content and applications, and forbids ISPs from discriminating against or prioritizing certain users, equipment, or types of content. Vimeo created a handy video to illustrate the importance of defending net neutrality:</p>\n<div class=\"embed-vimeo\"></div>\n<p>Net neutrality is once again under attack as the FCC is planning to remove the Title II (<a href=\"https://en.wikipedia.org/wiki/Common_carrier#Telecommunications\" target=\"_blank\">common carrier</a>) protections established during the Obama administration.</p>\n<h3>How to Join the Protest</h3>\n<p>Self-hosted WordPress site owners who want to participate in the Internet-Wide Day of Action to Save Net Neutrality on July 12 can do so by installing the <a href=\"https://wordpress.org/plugins/cat-signal/\" target=\"_blank\">Internet Defense League Cat Signal</a> plugin or the <a href=\"https://wordpress.org/plugins/fftf-alerts/\" target=\"_blank\">Fight for the Future Alerts</a> plugin. Both support the upcoming Save Net Neutrality event and are based on the <a href=\"https://github.com/fightforthefuture/battleforthenet-widget\" target=\"_blank\">official Fight for the Future widget</a> for the campaign.</p>\n<p>The widget will not display until July 12, so you can add a plugin ahead of time. If you want to test it to see what it will look like on the day of action, you can append #ALWAYS_SHOW_BFTN_WIDGET to your site URL after installing one of the plugins. See an example here: <a href=\"https://wptavern.com/#ALWAYS_SHOW_BFTN_WIDGET\" target=\"_blank\">https://wptavern.com/#ALWAYS_SHOW_BFTN_WIDGET</a></p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/07/battleforthenet-modal.png?ssl=1\"><img /></a></p>\n<p>The alert urges visitors to contact Congress and the FCC through the provided form. It can be displayed as a banner at the top of the page or as a modal (see example above).</p>\n<p>Automattic may also be planning a way for WordPress.com users to opt-in to participate. We&#8217;ll update the post if that information becomes available.</p>\n<p><em>Update:</em> Automattic has since created a <a href=\"https://wptavern.com/automattic-releases-net-neutrality-wordpress-plugin-ahead-of-july-12-protest\" target=\"_blank\">Net Neutrality plugin</a> for WordPress.com and self-hosted users who want to join the protest.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Jul 2017 18:12:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: Let’s Encrypt Passes 100 Million Certificates Issued, Will Offer Wildcard Certificates in January 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72805\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2660:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/01/lock.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/550FJBDFSW\">Chris Anderson</a>\n<p>Let&#8217;s Encrypt, the free and open certificate authority that launched in 2016, has <a href=\"https://letsencrypt.org/2017/06/28/hundred-million-certs.html\" target=\"_blank\">issued more than 100 million certificates</a> as of June 2017 and is currently securing 47 million domains. Earlier this year, the web passed a major milestone of getting <a href=\"https://wptavern.com/more-than-50-of-web-traffic-is-now-encrypted\" target=\"_blank\">more than 50% of traffic encrypted</a>. Let&#8217;s Encrypt has been a major contributor to that percentage growing to nearly 58%.</p>\n<p>&#8220;When Let’s Encrypt’s service first became available, less than 40% of page loads on the Web used HTTPS,&#8221; ISRG Executive Director Josh Aas said. &#8220;It took the Web 20 years to get to that point. In the 19 months since we launched, encrypted page loads have gone up by 18%, to nearly 58%. That’s an incredible rate of change for the Web.&#8221;</p>\n<p>Aas also announced that <a href=\"https://letsencrypt.org/2017/07/06/wildcard-certificates-coming-jan-2018.html\" target=\"_blank\">wildcard certificates are coming to Let&#8217;s Encrypt in 2018</a>. Wildcard certificates allow a site to secure an unlimited number of subdomains with the same certificate.</p>\n<p>Currently, the process to get Let&#8217;s Encrypt working on a WordPress multisite installation is much more complicated than adding a certificate for a single domain. The <a href=\"https://wordpress.org/plugins/wp-encrypt/\" target=\"_blank\">WP Encrypt</a> plugin claims multisite and multi-network compatibility but super admins have often run into failure on networks with higher numbers of sites. Wildcard support for Let&#8217;s Encrypt will provide a better way to secure multisite networks.</p>\n<p>Let&#8217;s Encrypt will offer the wildcard certificates via the new <a href=\"https://letsencrypt.org/2017/06/14/acme-v2-api.html\" target=\"_blank\">ACME v2 API endpoint</a> and will start by supporting base domain validation via DNS with the possibility of adding other validation options in the future. ACME is the protocol that Let&#8217;s Encrypt developed to allow subscribers to acquire and manage certificates. Those using the v1 endpoint are encouraged to move to v2 as soon as it&#8217;s available in January 2018. The v2 protocol was developed to be an IETF (Internet Engineering Task Force) standard so that ACME can work with more certificate authorities in the future.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2017 18:32:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: WangGuard Plugin Author Shuts Down Splog Hunting Service Due to Trauma and Death Threats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/wangguard-plugin-author-shuts-down-splog-hunting-service-due-to-trauma-and-death-threats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6853:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/10/wangguard.png?ssl=1\"><img /></a></p>\n<p>After seven years of developing and supporting the WangGuard/SplogHunter service, José Conti has <a href=\"https://www.joseconti.com/2017/07/03/la-verdadera-razon-del-cierre-wangguard/\" target=\"_blank\">shut down the server permanently</a> due to the stress and trauma associated with maintaining it. Conti is a WordPress plugin developer and consultant, and a member of the WordPress España translation team. His <a href=\"https://wordpress.org/plugins/wangguard/\" target=\"_blank\">WangGuard plugin</a> identifies and blocks sploggers, unwanted users, and untrusted users on WordPress, Multisite, BuddyPress, bbPress, and WooCommerce sites. It is currently active on more than 10,000 sites.</p>\n<p>Speculation about why the service shut down was running rampant after Conti had <a href=\"https://wptavern.com/wangguard-plugin-launches-indiegogo-campaign-to-fund-development-and-support\" target=\"_blank\">collected donations via an Indiegogo campaign in October 2016</a> to fund support and server costs. Since that time SiteGround stepped in to sponsor WangGuard, eliminating the server costs. The only costs that remained were Conti&#8217;s time and effort that he put into supporting the plugin.</p>\n<p>&#8220;My purpose with WangGuard was never money,&#8221; Conti said in his post explaining the reason for the shut-down. &#8220;I could have made WangGuard a paid plugin at anytime, and actually had a plan for that for years. But I didn’t do it because there is something inside me that would never let that happen. It was never, I repeat, never my plan to get rich with WangGuard, and I assure you that I could have done it easily: simply charging each of my users 24€/year, would have meant an income of more than 2 million euros per year. I just had to distribute a version of WangGuard I had collecting dust, with a checkbox on WangGuard’s server administration options but I never got it done. No matter the other reasons, which only people very close to me know: I simply didn’t want to, nor did I want to be a millionaire.&#8221;</p>\n<h3>Mafia Death Threats and Trauma from Exposure to the Dark Web: The High Cost of WangGuard&#8217;s 99.9% Accurate Detection of Splogs</h3>\n<p>WangGuard has long been known for its nearly perfect detection of registration spam. Not only did it completely block unwanted users, it also removed them from the database. The plugin was unrivaled in both accuracy and price &#8211; all users got everything the service offered for free. In order for WangGuard to provide its 99.90% accuracy, Conti bolstered the algorithm with manual curation and reviews.</p>\n<p>&#8220;WangGuard worked in two different ways: as an algorithm that I had been refining for seven years, and which was getting better as the sploggers evolved, so that it was always one step ahead of them, and also as human curation, in which I reviewed many factors, among them sites of sploggers to see if their content could improve the algorithm and make sure that it worked correctly both when it was blocking or not blocking a site,&#8221; Conti said. &#8220;The great secret of WangGuard was this second part. Without it WangGuard would not ever have become what it was.&#8221;</p>\n<p>Because of how effective WangGuard was at stopping unwanted users, Conti said for four years he received &#8220;almost daily death threats from mafias for making them lose millions of dollars.&#8221;</p>\n<p>Through the process of manually curating splogger sites, Conti caught a glimpse of the some of the darkest places on the web, which he said had a damaging psychological impact on him.</p>\n<p>&#8220;For seven years, I have visited places where I saw pederasty, pictures, and videos of murders (by razor blades, by gutting live people, by beheadings, dismemberments, to name a few), real videos of rape of all kinds (children, women, boys), photos of accidents in which people were totally disfigured, bizarre actions that I did not even know existed, and a very long &#8216;and so on,&#8217; which I do not want to expand on,&#8221; Conti said.</p>\n<p>The effects of viewing these types of websites every day took their toll and Conti decided to close the splog hunter service.</p>\n<p>&#8220;Finally, a few months ago, I broke down,&#8221; Conti said. &#8220;I disappeared from everywhere and fell into a depression. The seven years of working at WangGuard finally took a toll on me. I had nightmares because of all the macabre deaths I had seen, an obsession with protecting my children from pederasty, OCD, depression, and many other symptoms. It took me about 6 months to recover (and honestly, I may be deceiving myself, since I do not think I completely recovered my life).&#8221;</p>\n<p>I asked Conti if clicking through to the websites was necessary for maintaining the service. He explained that while WangGuard blocked emails, domains, IPs, and ISPs, without his manual curation of visiting the domains and clicking the links, users could get a lot of &#8220;sleepers&#8221; &#8211; registered and active accounts that remain silent until one day with a 0day vulnerability or a bug fix, they attack thousands of websites. The sleepers also wait to perform actions like create millions of sites on thousands of WordPress multisite installations in order to create a lot of bad content/links.</p>\n<p>&#8220;Visiting many domains, I was able to minimize this problem,&#8221; Conti said. &#8220;The way I worked not only fixed the current spam / splog problem, but the wizard and database also fixed any future problems with sleepers.&#8221;</p>\n<p>Another reason he visited the domains was to figure out what he needed to block, whether it was an email or a domain. The domain could be a spam domain or possibly a free email service.</p>\n<p>&#8220;By visiting a website, I could detect whether it was a phishing website or a site camouflaged as an email service in order to try to cheat WangGuard,&#8221; he said. &#8220;I saw a lot of &#8216;techniques&#8217; for trying to cheat WangGuard at Black Hat specialized forums. I had been subscribed to many spam/sploggers forums for investigation. Every time that a user described a real technique for cheating WangGuard, it was fixed immediately.&#8221;</p>\n<p>If you&#8217;re still using the WangGuard plugin, it may continue to work but not nearly as well as in the past. Conti said that some parts of the code work without the API, but the most important parts require the WangGuard/SplogHunter server. The plugin is open source, so anyone can fork it. <a href=\"https://wordpress.org/support/topic/why-wangguard-was-closed/\" target=\"_blank\">An English translation of his original post</a> is available on the WordPress.org plugin forums.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Jul 2017 00:36:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WordSesh Asia Now in Planning for 2018, WordCamp Asia Targeted for 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72742\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wordsesh-asia-now-in-planning-for-2018-wordcamp-asia-targeted-for-2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4161:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/07/wordcamp-asia-meeting-group.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://sakinshrestha.com/events/wordcamp-asia/\">Sakin Shrestha</a>\n<p>Yesterday Sakin Shrestha <a href=\"https://sakinshrestha.com/events/wordcamp-asia/\" target=\"_blank\">announced</a> that WordCamp Asia is now in the preliminary planning stages. Shrestha is a key reviewer on the Theme Review Team, translates WordPress to Nepali, and organizes meetups and WordCamps in Nepal. He and other members of the WordPress community in Asia, including representatives from India, Japan, Indonesia, Thailand, Sri Lanka, Singapore, and Nepal, had the opportunity to meet at WordCamp Europe.</p>\n<p>&#8220;We have been talking about WordCamp Asia informally when some of us attended WordCamp US for the first time,&#8221; Shrestha said. &#8220;That’s was in 2015, where I met Naoko Takano. She is the one with the main idea as the Japanese WordPress community was already doing well. Then we started meeting more people from Asia at WordCamp Europe 2016 and had an informal meeting there.&#8221;</p>\n<p>After this meeting, Rahul Bansal created a Facebook group for <a href=\"https://www.facebook.com/groups/wpasia/\" target=\"_blank\">WordPress Community Organizers in Asia</a> to support each other in a more coordinated effort. The first formal meeting happened at WordCamp Europe 2017 where the team decided that trying for WordCamp Asia in 2018 would be too soon. Instead, they are planning to host a WordSesh Asia event in 2018 to work on their coordination and teamwork. The team is working towards hosting WordCamp Asia in 2019.</p>\n<h3>Organizers Consider Bangkok as a Possible Location for WordCamp Asia in 2019</h3>\n<p>Shrestha&#8217;s <a href=\"https://sakinshrestha.com/events/wordcamp-asia/\" target=\"_blank\">post</a> identifies several challenges that are unique to hosting a large scale WordCamp in Asia, including the need for visas even for travel within Asia, political instability, and numerous currencies and languages in use.</p>\n<p>&#8220;WordCamp Asia is really important for the WordPress community in Asia,&#8221; Shrestha said. &#8220;I am fortunate enough to attend WCUS and WCEU, which are some of the biggest WordCamps where we get to meet lot of WordPressers, share and exchange ideas, contribute to WordPress, start a new business, and think outside of the box. But for most of Asians, it’s really difficult to go that far and also it’s expensive to attain those. So, we are limited to WordCamps in our own country and neighboring ones. That is why we are thinking about WordCamp Asia in Bangkok, which will be really inclusive as it’s in the center part of Asia and it’s cheaper to go there and less time consuming for all.&#8221;</p>\n<p>Shrestha also feels strongly about providing travel assistance for those with financial hardships, as the most expensive aspect of attending a WordCamp is usually the travel and accommodation.</p>\n<p>&#8220;WordCamps are not just for the rich,&#8221; Shrestha said. &#8220;The primary motive of WordCamps is to grow the local community. So, WordCamp Asia’s mission will be to influence the community of WordPress Asia and help it to grow. That is why, instead of planning for a grand and pompous event, we need to make sure it is affordable and reachable to people of all financial backgrounds.&#8221;</p>\n<p>Shrestha said he has seen major changes in working with the WordPress community in Nepal from 2012 &#8211; 2017, which he attributes to having a stronger local presence with the WordCamp. India has also benefited from hosting WordCamps and has approximately nine happening in various cities. They are working towards hosting a WordCamp India in the future. There are also emerging communities in Singapore, Thailand, Indonesia, Sri Lanka, Cambodia, and Vietnam.</p>\n<p>&#8220;It’s time for pursuing WordCamp Asia,&#8221; Shrestha said. &#8220;We really have good talents here in Asia but we lack exposure. WordCamp Asia can create buzz and make more people aware, inspire, and provide opportunity.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jul 2017 18:10:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Jesse Petersen, Founder of Genesis The.me Passes Away\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72772\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/jesse-petersen-founder-of-genesis-the-me-passes-away\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8085:\"<img />Petersen Family\n<p><a href=\"https://twitter.com/jpetersen\">Jesse Petersen</a>, founder of <a href=\"https://www.genesisthe.me/\">Genesis The.me</a> and <a href=\"https://www.petersenmediagroup.com/\">Petersen Media Group</a>, has <a href=\"https://www.newlungsfor.me/2017/jesse-petersen-has-passed-away/\">passed away</a> at the age of 38. Petersen had been battling <a href=\"http://www.cffatboy.com/what-is-cystic-fibrosis/\">Cystic Fibrosis</a> for the past several years and suffered a massive lung bleed earlier today. He passed out before paramedics could reach him and could not be revived at the emergency room.</p>\n<p>Petersen was on a double-lung transplant list with a <a href=\"https://en.wikipedia.org/wiki/Lung_allocation_score\">lung allocation score</a> of 38.859. The LAS is a score used to prioritize waiting list candidates based on a combination of wait list urgency and post-transplant survival. Last month, Petersen received the phone call he had been waiting for.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I got the call! Getting ready to leave to go to the hospital for testing and waiting.<a href=\"https://twitter.com/hashtag/NewLungsForJesse?src=hash\">#NewLungsForJesse</a> <a href=\"https://t.co/hCCJik05MY\">pic.twitter.com/hCCJik05MY</a></p>\n<p>&mdash; Jesse Ⓦ Petersen (@jpetersen) <a href=\"https://twitter.com/jpetersen/status/873074034065391619\">June 9, 2017</a></p></blockquote>\n<p></p>\n<p>Unfortunately, the lungs were determined not to be in a suitable condition for transplant.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">No go. He didn\'t like the look of the lungs. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f629.png\" alt=\"?\" class=\"wp-smiley\" /> No new lungs for Jesse today. Maybe tonight the phone will ring again.</p>\n<p>&mdash; Jesse Ⓦ Petersen (@jpetersen) <a href=\"https://twitter.com/jpetersen/status/873302087668576256\">June 9, 2017</a></p></blockquote>\n<p></p>\n<p>He <a href=\"https://www.newlungsfor.me/2017/how-i-felt-on-dry-run-day-and-after/\">shared his experience</a> in a raw, emotional post that describes the highs and lows he felt that day. &#8220;While the day was an emotional roller coaster, with the highs being WAY up there, the lows were surprisingly mild,&#8221; Petersen said. &#8220;They just weren’t the right lungs, and this protected me from years of issues, so it’s all good. The call for the perfect lungs for me will come in God’s timing. I am content to wait.&#8221;</p>\n<p>On July 2nd, a patient with a higher LAS score than Petersen&#8217;s was taken into surgery to receive a double-lung transplant. This made Petersen the highest priority pending a match was found but a match wasn&#8217;t found in time.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">She was taken into surgery at noon, Tampa time. Surgery is 6-12 hours. I\'m very happy for her because her need was more than twice mine.</p>\n<p>&mdash; Jesse Ⓦ Petersen (@jpetersen) <a href=\"https://twitter.com/jpetersen/status/881549935405129728\">July 2, 2017</a></p></blockquote>\n<p></p>\n<p>I did not have the opportunity to meet him in person. From those who knew him personally, Petersen was a great husband, father, and a caring individual who despite his medical situation, would help out the best way he could. There are two stories that highlight the kind of person he was. The first is <a href=\"https://twitter.com/jpetersen/status/881974173085691904\">a Twitter thread</a> he published two days ago.</p>\n<blockquote><p>When you meet a 5 year-old who needs a heart and double-lung transplant but has been turned down everywhere, your situation doesn’t seem so bad. That family doesn’t care about politics, social class, keeping up with the Joneses, or whether their clothes match. They are enjoying life.</p>\n<p>Because when it comes down to it, all we really need is to know our worth and love everyone else because they have equal worth. That doesn’t mean you have to agree with everyone, but you don’t have to seek out opposition or turmoil. Random acts of kindness rock.</p>\n<p>Can you look over your life and say you’d be leaving those connected to you better off having known you? If not, start today.</p></blockquote>\n<p>The second is <a href=\"https://www.facebook.com/jesse.dubyah/posts/238778876639367\">from his Facebook account</a> about an encounter he had with a mother pushing her small boy in a wheelchair with a surgical mask on.</p>\n<blockquote><p>I finally got out of the house to go do a God &amp; Country service followed by fireworks. While waiting to go outside, a mom I&#8217;d seen pushing a small boy in a wheelchair with a surgical mask and oxygen on him came over to me.</p>\n<p>&#8216;I just wanted to say how cool I think your double tank cart is. I&#8217;m going to call my supplier tomorrow to get one for our wheelchair.&#8217;</p>\n<p>We started talking (most unlike me) and she said her son needed a heart and a double lung transplant&#8230; but they&#8217;ve been turned down everywhere, starting with the very forgiving Pittsburgh center.</p>\n<p>&#8216;I&#8217;m so sorry.&#8217;</p>\n<p>[nodded her head with a pained look] &#8216;We&#8217;re just making the most of our time now.&#8217;</p>\n<p>My heart broke. I&#8217;ve already lived 7 of his lifetimes. I&#8217;ve played sports, graduated from college, stood on the equator, married my best friend, and have two healthy boys.</p>\n<p>So kick me the next time I complain about my wait, OK?</p></blockquote>\n<p>Members of the WordPress community are using social media to share memories, grieve, and pass along condolences to his family.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I first met <a href=\"https://twitter.com/jpetersen\">@jpetersen</a> at <a href=\"https://twitter.com/hashtag/wcorl?src=hash\">#wcorl</a> and was honored to have him at <a href=\"https://twitter.com/hashtag/wcmia?src=hash\">#wcmia</a> 2015. Hope it’s ok to share his “speaker card” from <a href=\"https://twitter.com/wordcampmiami\">@wordcampmiami</a>. <a href=\"https://t.co/R7czM5AV1h\">pic.twitter.com/R7czM5AV1h</a></p>\n<p>&mdash; David Bisset (@dimensionmedia) <a href=\"https://twitter.com/dimensionmedia/status/882711570899492864\">July 5, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">RIP <a href=\"https://twitter.com/jpetersen\">@jpetersen</a>, you were a great friend, and co-host. Gonna miss the great convos we had.</p>\n<p>&mdash; The WP Crowd (@thewpcrowd) <a href=\"https://twitter.com/thewpcrowd/status/882708241532059648\">July 5, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Met <a href=\"https://twitter.com/jpetersen\">@jpetersen</a> on multiple occasions. Family man and proud dad. Always respected the hell outta that. See you on the flip side, buddy.</p>\n<p>&mdash; Jared Atchison (@jaredatch) <a href=\"https://twitter.com/jaredatch/status/882714968990371840\">July 5, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Terrible news, <a href=\"https://twitter.com/jpetersen\">@jpetersen</a> will be missed. CF takes too many, too soon. Rest in peace, buddy.</p>\n<p>&mdash; Brian Krogsgard (@Krogsgard) <a href=\"https://twitter.com/Krogsgard/status/882711331929022470\">July 5, 2017</a></p></blockquote>\n<p></p>\n<p>Petersen&#8217;s family has created a <a href=\"https://www.newlungsfor.me/2017/jesse-petersen-has-passed-away/\">crowd-funding campaign</a> to help offset funeral and medical expenses. Since its creation, the community has donated more than $12K of $20K. If you are able, please consider donating as Petersen was the sole provider of income for his family.</p>\n<p>My deepest condolences go out to his friends and family. Petersen is survived by his wife and two sons.</p>\n<p><strong>Related Reading</strong>:</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://2017.us.wordcamp.org/2017/07/05/the-loss-of-one-of-our-own/\">The Loss of One of Our Own</a></p></blockquote>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jul 2017 02:09:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: WPWeekly Episode 280 – Behind the Scenes of Tuniversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=72768&preview=true&preview_id=72768\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/wpweekly-episode-280-behind-the-scenes-of-tuniversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2595:\"<p>In this episode, <a href=\"http://jjj.me/\">John James Jacoby</a> and I are joined by <a href=\"http://kikodoran.com/\">Kiko Doran</a> and <a href=\"http://www.travistotz.com/\">Travis Totz</a>, Senior Web Strategist at Modern Tribe. Doran helped create <a href=\"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewBook?id=1235850828&mt=11&ls=1\">Tuniversity</a>, a revolutionary new way of learning music through a highly interactive iBook.</p>\n<p>The project was so large, Doran <a href=\"http://tri.be/case-study/tuniversity/\">outsourced</a> some of the work to <a href=\"http://tri.be\">Modern Tribe</a>, a web design and development firm. During the show, we learn the benefits of working with an agency you trust. Doran also explained what it was like to be a client as he&#8217;s normally fulfilling the agency role.</p>\n<p>Two major takeaways from the Tuniversity project include:</p>\n<ol>\n<li>Work on things you&#8217;re passionate about with people who share the same passion.</li>\n<li>Approach problems with a positive mindset.</li>\n</ol>\n<p>Near the end of the show, we discussed the news that WangGuard is <a href=\"https://wordpress.org/support/topic/why-wangguard-was-closed/\">officially closed</a>.</p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"http://wphierarchy.com/\">WPHierarchy.com</a> is a WordPress resource<a href=\"https://wptavern.com/pretty-wordpress-template-hierarchy-diagram\"> created</a> by Rami Abraham in 2013. The site is an interactive version of<a href=\"http://wpdaily.co/wp-template-hierarchy-chart/\"> Michelle Schulp’s colorful diagram</a> of WordPress’ template hierarchy. Each template is linked to documentation that explains its function</p>\n<p><a href=\"https://www.youtube.com/playlist?list=PLzBixSjmbc8eFl6UX5_wWGP8i0mAs-cvY\">Dr. Russell A. Barkley (30 essential ideas everyone should know about ADHD)</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, July 12th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #280:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jul 2017 23:58:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: Nadia Eghbal and Mikeal Rogers Join a16z Podcast to Discuss the Changing Culture of Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72702\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/nadia-eghbal-and-mikeal-rogers-join-a16z-podcast-to-discuss-the-changing-culture-of-open-source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6242:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/79777096@N00/6866996865\">16th st</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>Nadia Eghbal and Mikeal Rogers recently joined Sonal Chokshi for <a href=\"https://a16z.com/2017/04/08/culture-open-source-community/\" target=\"_blank\">an episode of the a16z Podcast</a> to discuss the changing culture of open source. Eghbal works in community programs at GitHub to better support people doing open source work. Rogers is the community manager at the Node.js Foundation. The episode focuses on the human aspect of the world of open source software and what inspires people to work together to give software away for free.</p>\n<p>Through Eghbal&#8217;s research on sustaining open source communities, she found, as Rogers succinctly summarized on the show: &#8220;There&#8217;s no connection between the number of users and the number of people maintaining a project.&#8221; The <a href=\"http://heartbleed.com/\" target=\"_blank\">Heartbleed Bug</a>, which arrested public attention when it was disclosed in 2014, is perhaps one of the most critical examples of an open source project with a global user base and a grossly disproportionate number of maintainers.</p>\n<p>As part of her research at GitHub, Eghbal is working on creating a vocabulary to explain things that are happening with open source projects. One example is the distinction between &#8220;popular&#8221; versus &#8220;healthy&#8221; when describing projects in terms of the communities behind them, governance, quality of maintainership, and other factors that influence a project&#8217;s condition.</p>\n<p>&#8220;Because the dialogue tends to be set by popular projects, and those developers and their problems tend to dominate the story about this, you have these words and vocabulary like &#8216;drive-by-contributions,\'&#8221; Rogers said. This often implies that maintainers are too busy to look at the code. Rogers advocated for changing this perception of &#8220;drive-by-contributors&#8221; to view them as casual contributors, people who show up and have value to add. If maintainers can seize these contributions as an opportunity, they will have a better chance of leveling up contributors to be a more active part of their organization.</p>\n<p>The group also discussed how technology has caused a cultural shift among open source communities from the old world versus the new world of open source.</p>\n<p>&#8220;In older open source, part of the barrier to entry that people went through before they were ever identifiable to any contributor was an acclimation to the culture and an acclimation to the tool chain and all this stuff,&#8221; Rogers said. &#8220;One of the things that GitHub has done is completely remove all of that cultural acclimation. There is one tool chain that you use to contribute to any project and when you show up you don&#8217;t have all of this cultural knowledge. You haven&#8217;t bought into any of these ideals about open source necessarily. You&#8217;re just there to contribute. We actually need to work with that.&#8221;</p>\n<p>In the past, contributors informally acclimated to the culture through the onboarding process, and most software projects were more self-contained.</p>\n<p>&#8220;Where that becomes awkward today is that so many different pieces of software depend on other open source projects, which wasn&#8217;t actually true 10 or 20 year ago,&#8221; Eghbal said. With so many projects fitting into others as dependencies, it becomes more difficult to actually remove a project from the public domain. Open source licensing ensures that these projects have a life of their own. This has democratized entrepreneurship, making it easy for people to piece together technology to build applications and businesses. It also requires a higher level of skills for people working together across various open source projects and cultures.</p>\n<p>Eghbal and Rogers discussed the qualities of a healthy open source community, such as how welcoming the project is and how contributors speak to each other and resolve conflict. The ability to successfully resolve conflict can make the difference between a healthy growth of contributors or attrition on a project. Rogers mentioned a related conversation they had with Karl Fogel on their <a href=\"https://changelog.com/rfc\" target=\"_blank\">Request for Commits podcast</a> concerning conflict within projects.</p>\n<p>&#8220;When we were talking to Karl, he has this view that &#8216;As long as a it has an open source license, it doesn&#8217;t matter how dysfunctional the project is, because we as a community always have this ability to fork it,\'&#8221; Rogers said. &#8220;I didn&#8217;t agree with him on this, because the practical reality of forking a project is such a huge overhaul and you don&#8217;t necessarily have the right people to do it in your particular time. What you actually want are the healthy communities with healthy practices, what you want is to keep them going.&#8221;</p>\n<p>Another open source predicament they discussed, which is fairly common in the WordPress ecosystem, is when a company releases a project as open source or &#8220;gifts it to the community.&#8221; Eghbal likened this to &#8220;sending your dog away to a farm upstate.&#8221;</p>\n<p>&#8220;We&#8217;re really excited to announce this is now open source, meaning we don&#8217;t want to take care of it anymore,&#8221; she said. &#8220;&#8216;We&#8217;ll give it to the community,&#8217; (except they haven&#8217;t actually identified anyone in the community who wants to take care of it.)&#8221; This type of situation shows how &#8220;giving back to the community&#8221; isn&#8217;t always what it appears to be for those who end up using these projects that have been released into the wild.</p>\n<p>The group also discussed how the incentives for people to contribute to open source have changed over the years and why &#8220;the GitHub generation&#8221; has more readily adopted the MIT license. Check out the full podcast episode below:</p>\n<p></p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jul 2017 19:26:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"HeroPress: How I tried, applied, got involved. Realizing one of my childhood dreams.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1950\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/?utm_source=rss&utm_medium=rss&utm_campaign=tried-applied-got-involved-realizing-one-childhood-dreams\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15809:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/07/070517-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It was so scary admitting my ignorance, exposing it in a remote environment where I couldn\'t see my teammates reactions live.\" /><p>When you’re born in an island, you usually grow up thinking about all the marvelous things awaiting for you on the other side of the sea. I was born in Sardinia, an island in the middle of the Mediterranean Sea, and as a child I dreamt about becoming an air hostess.</p>\n<p>I wanted to travel the world and speak tons of foreign languages, to be able to communicate with local people everywhere I’d go.</p>\n<p>But people kept telling me that I wasn’t going to become tall enough for that job (genetics don’t lie!), and I eventually listened to them. I ended up choosing a different path in life, following the Italian mantra: “You have to study something that will guarantee a stable and secure job for life”.</p>\n<p>Even if I wasn’t that much convinced about the perspective of having the same job for all my life, as my parents did, at the same time I didn’t want to get stuck in the island forever: the unemployment rate in Sardinia is unfortunately really high and I didn’t want to risk to be part of that percentage.</p>\n<h3>Crossing the borders of the island</h3>\n<p>So I chose the Faculty of Economics and did my best to cross the borders of my island as soon as I had the chance: this happened when I was 22 and I moved to Siena, Tuscany, to finish my studies. That is also the time when I opened my first personal blog on an Italian platform named Tiscali, which I later migrated to WordPress.com.</p>\n<p><strong>I’ve always loved writing</strong>, and since I was a little girl I used to spend hours in my room writing stories and poems. I was doing the same with the blog but with the advantage of reaching a much larger public, virtually meeting many people and getting inspired by their stories.</p>\n<p>After 2 years in Tuscany I moved to Strasbourg, France. There I learnt French and did several little jobs, but I found my first important one in Milan, the big city shining with job opportunities for everyone —as Italians love to say.</p>\n<p>There I was, fulfilling the dream of many young people of my age (and their families): I was 25, with an average-paid 40 hours/week office job in the marketing department of a big international company, and I was surrounded by ambitious colleagues and a boss constantly asking for extra —and free— working hours per day.</p>\n<blockquote><p>I was feeling like a parrot inside a golden cage.</p></blockquote>\n<p>It seemed to me I wasn’t going anywhere. I also gave up blogging because I wasn’t feeling inspired enough to write. People constantly repeated to me that I was super lucky to have a permanent contract and work in a marketing department; in their eyes I was all set for life, so —using some strange equation — I also had to be happy!</p>\n<p>Of course I was luckier than many of my peers, but I kept asking myself if I really wanted to do that life forever.<br />\nDid I really want to keep on working 10 hours per day under the neon lights of an office, annihilate my dreams and live waiting for the free time of the weekend?</p>\n<p>The most vivid memory I have of that period is the overwhelming feeling clenching my throat on Sunday afternoons, when I started to dread the moment of coming back to the office the day after.</p>\n<h3>Facing new challenges</h3>\n<p>So I left and faced the change. At the beginning I gave myself the opportunity to test different office jobs. But the results were always the same: I kept feeling unsatisfied with my life, and I understood I had to respect my little girl’s dream and fly away from my golden cage.</p>\n<blockquote><p>I opted for emigration and moved alone to Barcelona, Spain, in 2012.</p></blockquote>\n<p>My first move was plunging myself into a few months of intense Spanish learning at the University, then I found a job in an international Assisted Reproduction Clinic.</p>\n<p>My job title was “Patient Coordinator” and I was assisting international patients coming to Barcelona for their treatments: I was their translator, interpreter and administrative consultant. Patients were from Italy, France, England, Morocco, Senegal…it was a Babylon of people with so many different backgrounds that I felt really inspired by some of their stories.<br />\nThis inspiration led me to start writing again: <strong>I dusted off my WordPress blog</strong> and filled it up with stories about my new life in Barcelona and some of the women I was meeting at the Clinic. I was feeling stronger and more independent than ever.</p>\n<p>The job at the Clinic lasted for 3 years. Even if it was really inspiring, it was also very stressful. Imagine being a 30-something woman speaking all day long about fertility problems with women struggling to have a baby.</p>\n<p>I realized I was getting too involved and decided to look around to see what I could do next.</p>\n<h3>How can I find a job like this?</h3>\n<p>It was summer 2015 and I was at my desk, in my little tiny apartment in front of Barcelona’s beach. I was writing in my blog and I got stuck in a technical problem. While I was searching through the WordPress.com documentation, I saw a pop-up in the bottom right corner of my screen: an Automattician wrote me to ask if I needed help. I gladly accepted her offer, we chatted for a few minutes, the problem was solved and I could go back to my writing. But I also left the chat with one question: <strong>how could that person on chat find a support job with WordPress</strong>?</p>\n<p>Curious as I am, I started looking for an answer and I stumbled upon the official WordPress job page: <a href=\"http://jobs.wordpress.net\">jobs.wordpress.net</a></p>\n<p>There I found a job offer that caught my attention: WP Media, a French startup, was looking for <strong>a polyglot and remote customer service teammate</strong> for one of their plugins, WP Rocket. I read their requirements: fluency in English, French and possibly another language, great experience with WordPress, some coding skills.</p>\n<p>That offer was calling me, I felt it.</p>\n<p><strong>I knew I didn&#8217;t have all the requirements</strong>, but hey, I could speak 4 languages, and I had a WordPress blog…right? Of course, I didn’t know anything about PHP, I had always been a WordPress.com user until that moment and I didn’t really know how to manage a self-hosted website or use a cache plugin…but I felt I was ready to learn all that. And moreover, what did I have to lose?</p>\n<h3>I wrote my most inspired cover letter and sent my CV.</h3>\n<p>With my total surprise, they answered me the day after and we set up an interview by Skype. My main strengths were the fluency in 4 languages and my previous experience in customer service, so I was really confident about those skills; yet I wanted to be totally honest with them: yes, I had been using WordPress for a long time, and yes, I was digital savvy enough, but I knew very little on the technical side. I had always worked on the front end of websites, writing, blogging, learning by myself; I didn&#8217;t know anything about the backend of WordPress sites.</p>\n<p>Even so, they had faith in me and in a few days I had the confirmation: I was in! <strong>During the first days I felt so happy about this new major turning point in my life</strong>: not only had I found a job thanks to my primordial passion, speaking foreign languages, but for the first time in my life I could do that job from home or anywhere else I liked, instead of being caged in a formal office!</p>\n<p>I got introduced to my remote teammates and I instantly felt welcomed.</p>\n<h3>Learning by doing</h3>\n<p>But, very soon, that initial enthusiasm started to struggle with another intense feeling: <strong>the fear of exposing my inexperience</strong>.</p>\n<p>There were too many things I didn&#8217;t know!</p>\n<p>Working in a WordPress backend was so new to me that I started studying like crazy and reading everything I could about WordPress for beginners. I went through some really intense months of learning by doing, supported by my teammates. Like a baby who start crawling and then taking little steps, I was initially answering the easiest tickets from our customers.  At the same my teammates were sending me useful material to read, setting up video-calls for 1to1 training, encouraging me every time they could.</p>\n<p>After a few days I received the first happy comments by the customers I was helping in their mother tongue: until that moment the plugin’s support had been offered only in English and French, so it was the first time Spanish and Italian customers were being answered in their own language…and they appreciated that!</p>\n<p>Even so, I can’t deny it, I was scared.</p>\n<blockquote><p>It was so scary admitting my ignorance, exposing it in a remote environment where I couldn’t see my teammates reactions live.</p></blockquote>\n<p>My first instinct was imagining the worst scenarios where they were secretly hating me for interrupting their work on Slack with my doubts.</p>\n<p>But I had no other choice than to keep asking questions and learn from their answers. Not doing so would have been much worse: silencing my voice would have slowed down my learning process.</p>\n<h3>Why don’t you try to contribute to WordPress?</h3>\n<p>We were at WordCamp Paris 2016 when one of my teammates showed me how the WordPress community worked together and kept in contact through Slack.</p>\n<p>“You speak multiple languages, why don’t you try to contribute to the polyglots team?” —he asked.</p>\n<p>That thought never crossed my mind before, I knew very little about contributing to WordPress. I had been working for WP Media for 6 months and, while I was enjoying my new job a lot, I was just slowly starting to abandon that overwhelming feeling of insecurity I mentioned above.</p>\n<blockquote><p>I didn’t feel ready to dive into a new challenge and start also contributing to WordPress, I thought I didn’t have the ability to do that. I was wrong, obviously.</p></blockquote>\n<p>Curiosity won on me another time and I joined the two Slack channels <em>Making WordPress</em> (where all the WP global community meets) and <em>Italia WP Community</em>. I lurked the channels for a few months, until I went to WordCamp Milan and met some members of the Italian Polyglots team.</p>\n<p>It was love at first string: Laura, one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=it_IT\">General Translation Editors</a> (GTE) for Italy, taught me how to start contributing and translating following the polyglots guidelines. She also told me about the big effort the Italian community has been doing to work together, consistently, to boost WordPress related events in Italy and to grow up.</p>\n<p>I wanted to be an active part of it and I started contributing.</p>\n<p><strong>Now I’m a Project Translator Editor for the Italian polyglots team</strong> and I mentor new contributors: I love it!</p>\n<p>Since the beginning of my journey into the WordPress world I traveled a lot, and also attended WordCamps in <a href=\"https://2016.paris.wordcamp.org/\">Paris</a>, <a href=\"https://2016.europe.wordcamp.org/\">Vienna</a>, <a href=\"https://2016.milano.wordcamp.org/\">Milan</a>, <a href=\"https://2016.barcelona.wordcamp.org/\">Barcelona</a>, <a href=\"https://2017.torino.wordcamp.org/\">Torino</a> and <a href=\"https://2017.bilbao.wordcamp.org/\">Bilbao</a>.</p>\n<p>Following my teammates encouragement, <strong>I also started applying to WordCamps as a speaker</strong>, because I felt my story could be important for other people looking for new inspiration for their working and personal life. I gave my first talk in my adoptive city, Barcelona, in December 2016, then in Torino in April 2017 and I recently had the honor to tell my story also from the stage of WordCamp Europe 2017.</p>\n<p>In a short glimpse of time I engaged in many activities related to WordPress which allowed me to meet very interesting and inspiring people from all over the world.</p>\n<h3>I’m (not) lucky.</h3>\n<p>People keep telling me that I’m lucky, and it’s true, I really am. But if I’m here, now, sharing my story (and thanks Topher for inviting me to write it!) is not because I live under a lucky star: I just used my previous skills and passions and adapted them to a new career and life path.</p>\n<p>We all have some skills; and if we don’t know which they are exactly, we should take some time to make a list of the things we’re really good at. With that in mind, just try. Apply. Get involved. Don’t get stuck in the feeling of “I can’t do it because I don’t know enough”.</p>\n<p>That is what I did: without even realizing it, I started putting into reality the dream of the little girl who was born in an island and wanted to travel and speak different languages.</p>\n<p>WordPress made this possible: I’m part of a big community, and I am proud of it.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: How I tried, applied, got involved. Realizing one of my childhood dreams.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20I%20tried%2C%20applied%2C%20got%20involved.%20Realizing%20one%20of%20my%20childhood%20dreams.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ftried-applied-got-involved-realizing-one-childhood-dreams%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How I tried, applied, got involved. Realizing one of my childhood dreams.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ftried-applied-got-involved-realizing-one-childhood-dreams%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Ftried-applied-got-involved-realizing-one-childhood-dreams%2F&title=How+I+tried%2C+applied%2C+got+involved.+Realizing+one+of+my+childhood+dreams.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How I tried, applied, got involved. Realizing one of my childhood dreams.\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/&media=https://heropress.com/wp-content/uploads/2017/07/070517-min-150x150.jpg&description=How I tried, applied, got involved. Realizing one of my childhood dreams.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How I tried, applied, got involved. Realizing one of my childhood dreams.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/\" title=\"How I tried, applied, got involved. Realizing one of my childhood dreams.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/tried-applied-got-involved-realizing-one-childhood-dreams/\">How I tried, applied, got involved. Realizing one of my childhood dreams.</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Jul 2017 12:00:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alice Orru\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: WordCamp Europe 2017 Posts 24% No-Show Rate, Cites Early Ticket Sales and Expensive Location\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=72644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/wordcamp-europe-2017-posts-24-no-show-rate-cites-early-ticket-sales-and-expensive-location\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3872:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/06/wordcamp-europe-venue.jpg?ssl=1\"><img /></a>photo credit: WP Tavern\n<p>WordCamp Europe 2017 organizers have posted <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\" target=\"_blank\">attendance and budget data</a> compiled after the conclusion of the event. Despite being <a href=\"https://2017.europe.wordcamp.org/do-not-miss-the-biggest-wordcamp-in-europe/\" target=\"_blank\">promoted</a> as &#8220;the largest WordPress event to this day&#8221; with more than 3,000 expected attendees, WCEU 2017 fell short with 1,900 people on the ground. Attendees were 5% fewer than last year&#8217;s 2,000 in Vienna. Expectations ran high but organizers could not predict the 24% no-show rate once the event got started. This is more than double the 10% no-show rate for the previous four years.</p>\n<p>The camp&#8217;s organizers do not have a simple explanation for the high no-show rate, but cite several factors, including a few dozen participants being <a href=\"https://wptavern.com/wordcamp-europe-attendees-are-being-denied-visas-because-conference-ticket-price-is-too-low\" target=\"_blank\">denied visas</a>, higher local sales, an expensive location, and putting tickets on sale too early. Approximately 60% of attendees were from nearby countries, such as France, Great Britain, Germany, Belgium, and the Netherlands.</p>\n<p>Ticket sales for 2017 were open immediately at the conclusion of the 2016 event in Vienna. Organizers found that tickets sold in the first six months had a 34% no-show rate as compared to 20% for those sold in 2017. As the event has often sold out in the past, prospective attendees may have felt pressure to purchase a ticket in advance without confirming the ability to attend. </p>\n<p>Posting increasingly higher attendance numbers isn&#8217;t one of the goals of the WordCamp, but planning accurately for the number of people who will attend is crucial for resource and budget planning. When one in four attendees is a no-show, the plans for food, swag, venue accommodations, and other aspects of the event are askew.</p>\n<p>Organizers did not mention <a href=\"https://wptavern.com/wordcamp-europe-2017-kicks-off-with-contributor-day-focused-on-growing-wordpress-through-inclusion\" target=\"_blank\">Contributor Day</a> attendance in the wrap-up report, but this may have been one of the most successful aspects of the event. It was held prior to the main conference days, which may explain the event&#8217;s unusually high attendance numbers. Organizers hosted 473 attendees for the 500 available contributors slots. </p>\n<h3>WordCamp Europe 2017 Cost 300€ per Attendee, Sponsors Covered 80%</h3>\n<p>WordCamp Europe&#8217;s wrap-up report also includes a transparent breakdown of the event&#8217;s 700k€ budget. Catering costs for lunches, snacks and drinks, made up 50% of the budget. However, organizers were limited to the venue&#8217;s catering partners, which blurs the line between actual food versus venue costs. </p>\n<p>The team was unable to sell all of the sponsorship packages and was forced to reduce the budget by 149k€ along the way. WordCamp Central subsidized 10€/ticket and covered the final deficit of 28k€. The cost breakdown per attendee was 300€ with sponsors covering 80%, WordCamp Central 7%, and tickets sales 13%. These numbers show that the 40€ ticket price is a small fraction of the total costs required for an event of this size. </p>\n<p>Organizers said they felt it was important to share the data for educational purposes but also to &#8220;demonstrate to everyone who might have a doubt, that maintaining the ticket fee very low is meant to make our events accessible to all, but that the fee is not an indicator of the value of the conference.&#8221;</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2017 19:06:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:36:\"http://feeds.feedburner.com/wp-pipes\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:8:\"wp-pipes\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"9yfT4tp1cYeeCGfiyzJ/cAr1Bw8\";s:13:\"last-modified\";s:29:\"Mon, 31 Jul 2017 23:07:58 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Mon, 31 Jul 2017 23:49:29 GMT\";s:7:\"expires\";s:29:\"Mon, 31 Jul 2017 23:49:29 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";}}s:5:\"build\";s:14:\"20170518170751\";}','no'),(1604,'_transient_timeout_feed_mod_99b272eaef9eaa265f30d77863073f26','1501555770','no'),(1605,'_transient_feed_mod_99b272eaef9eaa265f30d77863073f26','1501544970','no'),(1626,'post_by_email_address1','NULL','yes'),(1627,'monitor_receive_notifications','1','yes'),(1634,'jetpack_restapi_stats_cache','a:1:{s:32:\"003a428295949b76440281f2baaa5d7d\";a:1:{i:1501545464;O:8:\"stdClass\":3:{s:4:\"date\";s:10:\"2017-07-31\";s:5:\"stats\";O:8:\"stdClass\":19:{s:14:\"visitors_today\";i:0;s:18:\"visitors_yesterday\";i:0;s:8:\"visitors\";i:0;s:11:\"views_today\";i:0;s:15:\"views_yesterday\";i:0;s:14:\"views_best_day\";s:0:\"\";s:20:\"views_best_day_total\";i:0;s:5:\"views\";i:0;s:8:\"comments\";i:0;s:5:\"posts\";i:0;s:14:\"followers_blog\";i:0;s:18:\"followers_comments\";i:0;s:18:\"comments_per_month\";i:0;s:31:\"comments_most_active_recent_day\";s:0:\"\";s:25:\"comments_most_active_time\";s:3:\"N/A\";s:13:\"comments_spam\";i:0;s:10:\"categories\";i:0;s:4:\"tags\";i:0;s:6:\"shares\";i:0;}s:6:\"visits\";O:8:\"stdClass\":3:{s:4:\"unit\";s:3:\"day\";s:6:\"fields\";a:3:{i:0;s:6:\"period\";i:1;s:5:\"views\";i:2;s:8:\"visitors\";}s:4:\"data\";a:30:{i:0;a:3:{i:0;s:10:\"2017-07-02\";i:1;i:0;i:2;i:0;}i:1;a:3:{i:0;s:10:\"2017-07-03\";i:1;i:0;i:2;i:0;}i:2;a:3:{i:0;s:10:\"2017-07-04\";i:1;i:0;i:2;i:0;}i:3;a:3:{i:0;s:10:\"2017-07-05\";i:1;i:0;i:2;i:0;}i:4;a:3:{i:0;s:10:\"2017-07-06\";i:1;i:0;i:2;i:0;}i:5;a:3:{i:0;s:10:\"2017-07-07\";i:1;i:0;i:2;i:0;}i:6;a:3:{i:0;s:10:\"2017-07-08\";i:1;i:0;i:2;i:0;}i:7;a:3:{i:0;s:10:\"2017-07-09\";i:1;i:0;i:2;i:0;}i:8;a:3:{i:0;s:10:\"2017-07-10\";i:1;i:0;i:2;i:0;}i:9;a:3:{i:0;s:10:\"2017-07-11\";i:1;i:0;i:2;i:0;}i:10;a:3:{i:0;s:10:\"2017-07-12\";i:1;i:0;i:2;i:0;}i:11;a:3:{i:0;s:10:\"2017-07-13\";i:1;i:0;i:2;i:0;}i:12;a:3:{i:0;s:10:\"2017-07-14\";i:1;i:0;i:2;i:0;}i:13;a:3:{i:0;s:10:\"2017-07-15\";i:1;i:0;i:2;i:0;}i:14;a:3:{i:0;s:10:\"2017-07-16\";i:1;i:0;i:2;i:0;}i:15;a:3:{i:0;s:10:\"2017-07-17\";i:1;i:0;i:2;i:0;}i:16;a:3:{i:0;s:10:\"2017-07-18\";i:1;i:0;i:2;i:0;}i:17;a:3:{i:0;s:10:\"2017-07-19\";i:1;i:0;i:2;i:0;}i:18;a:3:{i:0;s:10:\"2017-07-20\";i:1;i:0;i:2;i:0;}i:19;a:3:{i:0;s:10:\"2017-07-21\";i:1;i:0;i:2;i:0;}i:20;a:3:{i:0;s:10:\"2017-07-22\";i:1;i:0;i:2;i:0;}i:21;a:3:{i:0;s:10:\"2017-07-23\";i:1;i:0;i:2;i:0;}i:22;a:3:{i:0;s:10:\"2017-07-24\";i:1;i:0;i:2;i:0;}i:23;a:3:{i:0;s:10:\"2017-07-25\";i:1;i:0;i:2;i:0;}i:24;a:3:{i:0;s:10:\"2017-07-26\";i:1;i:0;i:2;i:0;}i:25;a:3:{i:0;s:10:\"2017-07-27\";i:1;i:0;i:2;i:0;}i:26;a:3:{i:0;s:10:\"2017-07-28\";i:1;i:0;i:2;i:0;}i:27;a:3:{i:0;s:10:\"2017-07-29\";i:1;i:0;i:2;i:0;}i:28;a:3:{i:0;s:10:\"2017-07-30\";i:1;i:0;i:2;i:0;}i:29;a:3:{i:0;s:10:\"2017-07-31\";i:1;i:0;i:2;i:0;}}}}}}','no'),(1646,'jetpack_sync_full_config','a:9:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;s:5:\"terms\";b:1;s:6:\"themes\";b:1;s:5:\"users\";b:1;s:5:\"posts\";b:1;s:8:\"comments\";b:1;s:7:\"updates\";b:1;}','no'),(1647,'jetpack_sync_full_enqueue_status','a:17:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:15:\"network_options\";b:0;s:5:\"terms\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:6:\"themes\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"menus\";b:0;s:5:\"users\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"posts\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:8:\"comments\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"updates\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:11:\"attachments\";b:0;s:4:\"meta\";b:0;s:7:\"plugins\";b:0;s:7:\"protect\";b:0;s:9:\"full-sync\";b:0;s:5:\"stats\";b:0;}','no'),(1648,'_transient_timeout_jetpack_sync_last_checked_queue_state_full_sync','1501545927','no'),(1649,'_transient_jetpack_sync_last_checked_queue_state_full_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(1662,'jpsq_full_sync_checkout','0:0','no'),(1716,'_transient_timeout_jetpack_jitm_9060ee592dba9ff3bc3f70421ba7428','1501547438','no'),(1717,'_transient_jetpack_jitm_9060ee592dba9ff3bc3f70421ba7428','a:1:{s:18:\"last_response_time\";i:1501547138;}','no'),(1722,'_transient_timeout_epc_purged_ba4e36889773c0c542f1bd22b8b164c5','1501547210','no'),(1723,'_transient_epc_purged_ba4e36889773c0c542f1bd22b8b164c5','1501547150','no'),(1729,'_transient_timeout_epc_purged_5ccb73d50b6c4c3f0de30fb40264aee7','1501547210','no'),(1730,'_transient_epc_purged_5ccb73d50b6c4c3f0de30fb40264aee7','1501547150','no'),(1737,'_transient_timeout_jetpack_jitm_47fe65afd9104e226f4ea62a08ef125','1501547458','no'),(1738,'_transient_jetpack_jitm_47fe65afd9104e226f4ea62a08ef125','a:1:{s:18:\"last_response_time\";i:1501547158;}','no'),(1743,'_transient_timeout_epc_purged_d446ef23158a499e8ac4481982f5febe','1501547253','no'),(1744,'_transient_epc_purged_d446ef23158a499e8ac4481982f5febe','1501547193','no'),(1746,'_transient_timeout_epc_purged_2df6202e921fdfb75389aba89f44493f','1501547253','no'),(1747,'_transient_epc_purged_2df6202e921fdfb75389aba89f44493f','1501547193','no'),(1750,'_transient_timeout_jetpack_jitm_a3a3cdcb7a18e4babae0cec78995dfc','1501547499','no'),(1751,'_transient_jetpack_jitm_a3a3cdcb7a18e4babae0cec78995dfc','a:1:{s:18:\"last_response_time\";i:1501547199;}','no'),(1752,'_transient_timeout_jetpack_jitm_b6db6a8707118d1064cdb4decc3ee14','1501547504','no'),(1753,'_transient_jetpack_jitm_b6db6a8707118d1064cdb4decc3ee14','a:1:{s:18:\"last_response_time\";i:1501547204;}','no'),(1757,'_transient_timeout_jetpack_jitm_ab1253995977e17a86eb048646546e7','1501547513','no'),(1758,'_transient_jetpack_jitm_ab1253995977e17a86eb048646546e7','a:1:{s:18:\"last_response_time\";i:1501547213;}','no'),(1764,'_transient_timeout_jetpack_jitm_e3b32665a2a8768a74af843a58f82c8','1501547549','no'),(1765,'_transient_jetpack_jitm_e3b32665a2a8768a74af843a58f82c8','a:1:{s:18:\"last_response_time\";i:1501547249;}','no'),(1776,'WPLANG','','yes'),(1777,'allow_major_auto_core_updates','true','yes'),(1778,'allow_minor_auto_core_updates','true','yes'),(1779,'auto_update_theme','true','yes'),(1780,'auto_update_plugin','true','yes'),(1781,'auto_update_translation','true','yes'),(1786,'_transient_timeout_jetpack_jitm_950cdd3876ca796ad79b3c0571ca674','1501547689','no'),(1787,'_transient_jetpack_jitm_950cdd3876ca796ad79b3c0571ca674','a:1:{s:18:\"last_response_time\";i:1501547389;}','no'),(1788,'_transient_timeout_jetpack_jitm_6ff395efa9e75fb2e8b886fbc645af5','1501547712','no'),(1789,'_transient_jetpack_jitm_6ff395efa9e75fb2e8b886fbc645af5','a:1:{s:18:\"last_response_time\";i:1501547412;}','no'),(1798,'_site_transient_timeout_wporg_theme_feature_list','1501559457','no'),(1799,'_site_transient_wporg_theme_feature_list','a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}','no'),(1850,'_transient_timeout_jetpack_jitm_40be7bbf80107954ea3958de1a2b400','1501548788','no'),(1851,'_transient_jetpack_jitm_40be7bbf80107954ea3958de1a2b400','a:2:{i:0;O:8:\"stdClass\":6:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:46:\"Protect your site before making major changes.\";s:6:\"emblem\";N;s:11:\"description\";s:54:\"Back up your theme, plugins, and content with Jetpack.\";s:7:\"classes\";s:0:\"\";s:4:\"icon\";s:7:\"jetpack\";}s:3:\"CTA\";O:8:\"stdClass\":3:{s:7:\"message\";s:25:\"Enable VaultPress Backups\";s:4:\"hook\";s:0:\"\";s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:18:\"vaultpress-updates\";s:13:\"feature_class\";s:10:\"vaultpress\";}s:18:\"last_response_time\";i:1501548488;}','no'),(1859,'_transient_timeout_jetpack_jitm_527bae258d3b0687bf421295818786b','1501548959','no'),(1860,'_transient_jetpack_jitm_527bae258d3b0687bf421295818786b','a:1:{s:18:\"last_response_time\";i:1501548659;}','no'),(1863,'_transient_timeout_jetpack_jitm_6aeae048d7b408b4bd23c5da1c7bafa','1501548876','no'),(1864,'_transient_jetpack_jitm_6aeae048d7b408b4bd23c5da1c7bafa','a:1:{s:18:\"last_response_time\";i:1501548576;}','no'),(1923,'_transient_timeout_jetpack_jitm_ef5184b1ae222ac5f74e17023b47d8b','1501550207','no'),(1924,'_transient_jetpack_jitm_ef5184b1ae222ac5f74e17023b47d8b','a:1:{s:18:\"last_response_time\";i:1501549907;}','no'),(1943,'current_theme','Divi','yes'),(1944,'theme_mods_Divi','a:9:{i:0;b:0;s:18:\"custom_css_post_id\";i:25815;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_6\";s:2:\"on\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:2;}s:21:\"et_pb_replace_content\";s:2:\"on\";}','yes'),(1946,'theme_switched','','yes'),(1948,'et_pb_cache_notice','a:1:{s:6:\"3.0.65\";s:6:\"ignore\";}','yes'),(1953,'et_core_version','3.0.73','yes'),(1955,'et_divi','a:152:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:40:\"divi_email_provider_credentials_migrated\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:15:\"divi_1_3_images\";s:7:\"checked\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:16:\"primary_nav_font\";s:6:\"Roboto\";s:22:\"primary_nav_font_style\";s:9:\"uppercase\";s:24:\"primary_nav_font_spacing\";i:0;s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:23:\"primary_nav_dropdown_bg\";s:7:\"#f5f5f5\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#b0bec5\";s:31:\"primary_nav_dropdown_link_color\";s:7:\"#212121\";s:16:\"menu_link_active\";s:7:\"#ff9335\";s:14:\"body_font_size\";i:12;s:16:\"body_header_size\";i:34;s:18:\"body_header_height\";d:1.7;s:12:\"heading_font\";b:0;s:9:\"body_font\";s:9:\"Open Sans\";s:12:\"header_color\";s:7:\"#eceff1\";s:10:\"font_color\";s:7:\"#eceff1\";s:10:\"link_color\";s:7:\"#8bc34a\";s:19:\"product_tour_status\";a:6:{i:1;s:3:\"off\";i:4;s:3:\"off\";i:5;s:3:\"off\";i:6;s:3:\"off\";i:7;s:3:\"off\";i:8;s:3:\"off\";}s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:30:\"et_fb_pref_modal_snap_location\";s:4:\"left\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:570;s:27:\"et_fb_pref_modal_position_x\";i:918;s:27:\"et_fb_pref_modal_position_y\";i:40;s:20:\"phone_section_height\";i:30;s:16:\"phone_row_height\";i:20;s:20:\"phone_body_font_size\";i:14;s:22:\"phone_header_font_size\";i:44;s:16:\"hide_mobile_logo\";b:0;s:27:\"et_pb_cta-header_font_style\";s:0:\"\";s:16:\"show_search_icon\";b:0;s:11:\"menu_height\";i:65;s:13:\"nav_fullwidth\";b:0;s:17:\"hide_primary_logo\";b:0;s:12:\"header_style\";s:5:\"slide\";s:12:\"vertical_nav\";b:0;s:8:\"hide_nav\";b:0;s:22:\"slide_nav_show_top_bar\";b:0;s:14:\"slide_nav_font\";s:6:\"Roboto\";s:9:\"divi_logo\";s:79:\"http://copyvet.globat.com/wordpress/wp-content/uploads/2017/08/Site_Logo_v5.png\";s:12:\"divi_favicon\";s:0:\"\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#1f497d|#5374ad|#ff9335|#8bc34a|#eceff1|#bef67a\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:5:\"false\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:2:\"on\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:15:\"divi_custom_css\";s:1681:\"/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.7em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%; {\npadding-bottom: 10%\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:21:\"et_pb_static_css_file\";s:3:\"off\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:1001:\"<script>\ndocument.addEventListener(\'DOMContentLoaded\', function(event){ \n\n    if (window.location.hash) {\n        // Start at top of page\n        window.scrollTo(0, 0);\n		\n        // Prevent default scroll to anchor by hiding the target element\n        var db_hash_elem = document.getElementById(window.location.hash.substring(1));\n        window.db_location_hash_style = db_hash_elem.style.display;\n        db_hash_elem.style.display = \'none\';\n		\n        // After a short delay, display the element and scroll to it\n        jQuery(function($){\n            setTimeout(function(){\n                $(window.location.hash).css(\'display\', window.db_location_hash_style);\n                et_pb_smooth_scroll($(window.location.hash), false, 800);\n            }, 700);\n        });		\n    }\n});\n</script>\n\n<script>\njQuery(document).ready(function() {\n  var downloadButton = jQuery(\'.et-download-button\');\n    \n  downloadButton.each(function(index) {\n    jQuery(this).attr(\'download\', \'\');\n  });\n});\n</script>\n\n\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:11:\"logo_height\";i:50;s:12:\"header_email\";s:24:\"jeremy@jeremyfeldman.com\";s:21:\"minimized_menu_height\";i:38;s:12:\"phone_number\";s:12:\"917-699-3645\";s:12:\"slide_nav_bg\";s:7:\"#616161\";s:24:\"fullscreen_nav_font_size\";i:20;s:28:\"fullscreen_nav_top_font_size\";i:20;s:20:\"slide_nav_font_style\";s:4:\"bold\";s:28:\"slide_nav_links_color_active\";s:7:\"#ff9335\";s:21:\"slide_nav_links_color\";s:7:\"#ffffff\";s:17:\"body_header_style\";s:0:\"\";s:13:\"content_width\";i:1366;s:15:\"section_padding\";i:4;s:11:\"row_padding\";i:0;s:16:\"all_buttons_icon\";s:2:\"no\";s:27:\"divi_minify_combine_scripts\";s:5:\"false\";s:26:\"divi_minify_combine_styles\";s:5:\"false\";s:16:\"set_memory_limit\";s:1:\"1\";s:27:\"divi_skip_font_subset_force\";b:1;}','yes'),(1957,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1958,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1959,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1960,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(1961,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(1962,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(1964,'et_images_temp_folder','/hermes/bosnaweb13a/b2058/glo.copyvet/wordpress/wp-content/uploads/et_temp','yes'),(1965,'et_schedule_clean_images_last_time','1505311038','yes'),(1967,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(1970,'_transient_timeout_epc_purged_040deba456c8cc39d99dcb398dd5e101','1501550297','no'),(1971,'_transient_epc_purged_040deba456c8cc39d99dcb398dd5e101','1501550237','no'),(1976,'_transient_timeout_epc_purged_5583e279130aedff71810db2b20b86c0','1501550297','no'),(1977,'_transient_epc_purged_5583e279130aedff71810db2b20b86c0','1501550237','no'),(1980,'_transient_timeout_epc_purged_7180420da508f0762b267b07d86baec9','1501550297','no'),(1981,'_transient_epc_purged_7180420da508f0762b267b07d86baec9','1501550237','no'),(1984,'_transient_timeout_epc_purged_e54e9963533d4c09bbb469bf336702a7','1501550297','no'),(1985,'_transient_epc_purged_e54e9963533d4c09bbb469bf336702a7','1501550237','no'),(1988,'_transient_timeout_epc_purged_bbb6e8f1e96efa7d64d8264e1412033d','1501550298','no'),(1989,'_transient_epc_purged_bbb6e8f1e96efa7d64d8264e1412033d','1501550238','no'),(1992,'_transient_timeout_epc_purged_db1e0fb1b9dd232e58f3c9e33baf2d4c','1501550298','no'),(1993,'_transient_epc_purged_db1e0fb1b9dd232e58f3c9e33baf2d4c','1501550238','no'),(1996,'_transient_timeout_epc_purged_528bb46edc83d932de364ca0ada96f59','1501550298','no'),(1997,'_transient_epc_purged_528bb46edc83d932de364ca0ada96f59','1501550238','no'),(2000,'_transient_timeout_epc_purged_30f6966f7036b9eb0b049c4a71f68303','1501550298','no'),(2001,'_transient_epc_purged_30f6966f7036b9eb0b049c4a71f68303','1501550238','no'),(2004,'_transient_timeout_epc_purged_9e124708f5998dd8d76f8bdc66fa2e5e','1501550298','no'),(2005,'_transient_epc_purged_9e124708f5998dd8d76f8bdc66fa2e5e','1501550238','no'),(2008,'_transient_timeout_epc_purged_36bbf85a6e85176888efa9311642c31a','1501550298','no'),(2009,'_transient_epc_purged_36bbf85a6e85176888efa9311642c31a','1501550238','no'),(2012,'_transient_timeout_epc_purged_575992d9149150d03519e1e1d3b1ad57','1501550298','no'),(2013,'_transient_epc_purged_575992d9149150d03519e1e1d3b1ad57','1501550238','no'),(2016,'_transient_timeout_epc_purged_a68301d57e65b6c7c00b3de71060d0f1','1501550299','no'),(2017,'_transient_epc_purged_a68301d57e65b6c7c00b3de71060d0f1','1501550239','no'),(2020,'_transient_timeout_epc_purged_3d1ad45cea299d5561275a19066a4613','1501550299','no'),(2021,'_transient_epc_purged_3d1ad45cea299d5561275a19066a4613','1501550239','no'),(2024,'_transient_timeout_epc_purged_09b463a77c7fe0d01e226799878d9886','1501550299','no'),(2025,'_transient_epc_purged_09b463a77c7fe0d01e226799878d9886','1501550239','no'),(2028,'_transient_timeout_epc_purged_9334d8e4a900035303dd6eba595e08d1','1501550299','no'),(2029,'_transient_epc_purged_9334d8e4a900035303dd6eba595e08d1','1501550239','no'),(2032,'_transient_timeout_epc_purged_341ece8b9532fa247620fbbeab6df62d','1501550299','no'),(2033,'_transient_epc_purged_341ece8b9532fa247620fbbeab6df62d','1501550239','no'),(2036,'_transient_timeout_epc_purged_ec5e81684668f858082dbd970834712e','1501550299','no'),(2037,'_transient_epc_purged_ec5e81684668f858082dbd970834712e','1501550239','no'),(2040,'_transient_timeout_epc_purged_a4604ada89b385a3ec32cf3375de41aa','1501550299','no'),(2041,'_transient_epc_purged_a4604ada89b385a3ec32cf3375de41aa','1501550239','no'),(2044,'_transient_timeout_epc_purged_84c3703902892cefb4be79fb9ac3d4b5','1501550299','no'),(2045,'_transient_epc_purged_84c3703902892cefb4be79fb9ac3d4b5','1501550239','no'),(2048,'_transient_timeout_epc_purged_4a18ec9ccdab5649e7912ddb0321975b','1501550300','no'),(2049,'_transient_epc_purged_4a18ec9ccdab5649e7912ddb0321975b','1501550240','no'),(2052,'_transient_timeout_epc_purged_6d42042aad61b24c859c6fd164c5746b','1501550300','no'),(2053,'_transient_epc_purged_6d42042aad61b24c859c6fd164c5746b','1501550240','no'),(2056,'_transient_timeout_epc_purged_c0fa2e2e03ef74123ba1031d7a09deb4','1501550300','no'),(2057,'_transient_epc_purged_c0fa2e2e03ef74123ba1031d7a09deb4','1501550240','no'),(2060,'_transient_timeout_epc_purged_3a364280bdb75a1b67efebed912d20de','1501550300','no'),(2061,'_transient_epc_purged_3a364280bdb75a1b67efebed912d20de','1501550240','no'),(2064,'_transient_timeout_epc_purged_0470ab1d8273f1c72f24a5b56d1f3390','1501550300','no'),(2065,'_transient_epc_purged_0470ab1d8273f1c72f24a5b56d1f3390','1501550240','no'),(2068,'_transient_timeout_epc_purged_eb80f8117d41154258d73a73cf2689ef','1501550300','no'),(2069,'_transient_epc_purged_eb80f8117d41154258d73a73cf2689ef','1501550240','no'),(2072,'_transient_timeout_epc_purged_3d81d2f1b358230ba9a8943c86955073','1501550300','no'),(2073,'_transient_epc_purged_3d81d2f1b358230ba9a8943c86955073','1501550240','no'),(2076,'_transient_timeout_epc_purged_ecdb06929164f3d3544d58e587ca8037','1501550301','no'),(2077,'_transient_epc_purged_ecdb06929164f3d3544d58e587ca8037','1501550241','no'),(2080,'_transient_timeout_epc_purged_5cb956d9ca0dc2984ae07b0048e7c08b','1501550301','no'),(2081,'_transient_epc_purged_5cb956d9ca0dc2984ae07b0048e7c08b','1501550241','no'),(2084,'_transient_timeout_epc_purged_fb62d9d31977d4333e484068485729ba','1501550301','no'),(2085,'_transient_epc_purged_fb62d9d31977d4333e484068485729ba','1501550241','no'),(2088,'_transient_timeout_epc_purged_87908b119f5738b2da904033a8a4a5d4','1501550301','no'),(2089,'_transient_epc_purged_87908b119f5738b2da904033a8a4a5d4','1501550241','no'),(2092,'_transient_timeout_epc_purged_6053a155358acbfec826324acff590c0','1501550301','no'),(2093,'_transient_epc_purged_6053a155358acbfec826324acff590c0','1501550241','no'),(2096,'_transient_timeout_epc_purged_584bce63fa49a77c2d13922bbdb2f91c','1501550301','no'),(2097,'_transient_epc_purged_584bce63fa49a77c2d13922bbdb2f91c','1501550241','no'),(2100,'_transient_timeout_epc_purged_4a5ff6247d57b20ff7ebfbd8343f23df','1501550301','no'),(2101,'_transient_epc_purged_4a5ff6247d57b20ff7ebfbd8343f23df','1501550241','no'),(2112,'_transient_timeout_jetpack_jitm_61fb07fff4ef29fdd4f9e8f6d0a407c','1501550548','no'),(2113,'_transient_jetpack_jitm_61fb07fff4ef29fdd4f9e8f6d0a407c','a:1:{s:18:\"last_response_time\";i:1501550248;}','no'),(2148,'_transient_timeout_epc_purged_d7f2ec3e14b406c154a1ec73c0723537','1501550984','no'),(2149,'_transient_epc_purged_d7f2ec3e14b406c154a1ec73c0723537','1501550924','no'),(2171,'_transient_timeout_epc_purged_4931528ece080ba60ef71093c98c8bc0','1501551005','no'),(2172,'_transient_epc_purged_4931528ece080ba60ef71093c98c8bc0','1501550945','no'),(2175,'_transient_timeout_jetpack_jitm_473ce52f1f8821b253f23936cb36e88','1501551255','no'),(2176,'_transient_jetpack_jitm_473ce52f1f8821b253f23936cb36e88','a:1:{s:18:\"last_response_time\";i:1501550955;}','no'),(2177,'_transient_timeout_jetpack_jitm_c394fb3c5083c54c95c4ce29325c1e0','1501551255','no'),(2178,'_transient_jetpack_jitm_c394fb3c5083c54c95c4ce29325c1e0','a:1:{s:18:\"last_response_time\";i:1501550955;}','no'),(2179,'_transient_timeout_jetpack_jitm_f20ce2d6412769a2450400eaf3104e5','1501551285','no'),(2180,'_transient_jetpack_jitm_f20ce2d6412769a2450400eaf3104e5','a:1:{s:18:\"last_response_time\";i:1501550985;}','no'),(2184,'subscription_options','a:2:{s:10:\"invitation\";s:226:\"Howdy.\r\n\r\nYou recently followed this blog\'s posts. This means you will receive each new post by email.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";s:14:\"comment_follow\";s:239:\"Howdy.\r\n\r\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";}','yes'),(2194,'_transient_timeout_jetpack_jitm_bf9d46899ac0c0592ed1b06943d60b9','1501551338','no'),(2195,'_transient_jetpack_jitm_bf9d46899ac0c0592ed1b06943d60b9','a:1:{s:18:\"last_response_time\";i:1501551038;}','no'),(2203,'_transient_timeout_epc_purged_bf4ea4bddd1662627a3145b67cc5067b','1501551172','no'),(2204,'_transient_epc_purged_bf4ea4bddd1662627a3145b67cc5067b','1501551112','no'),(2211,'_transient_timeout_epc_purged_90b61e5d6abd1d20634e9a493c3b041b','1501551211','no'),(2212,'_transient_epc_purged_90b61e5d6abd1d20634e9a493c3b041b','1501551151','no'),(2220,'_transient_timeout_jetpack_jitm_ee00877d6c6c6560461d560707a9d23','1501551461','no'),(2221,'_transient_jetpack_jitm_ee00877d6c6c6560461d560707a9d23','a:1:{s:18:\"last_response_time\";i:1501551161;}','no'),(2222,'_transient_timeout_jetpack_jitm_3f55140c483aa6cea23102ba168e497','1501551461','no'),(2223,'_transient_jetpack_jitm_3f55140c483aa6cea23102ba168e497','a:1:{s:18:\"last_response_time\";i:1501551161;}','no'),(2224,'_transient_timeout_epc_purged_bce76e75852c671017a444efe700c4bf','1501551245','no'),(2225,'_transient_epc_purged_bce76e75852c671017a444efe700c4bf','1501551185','no'),(2243,'_transient_timeout_jetpack_jitm_24ef82b3a347df67355e76bb30bbc95','1501551533','no'),(2244,'_transient_jetpack_jitm_24ef82b3a347df67355e76bb30bbc95','a:1:{s:18:\"last_response_time\";i:1501551233;}','no'),(2245,'_transient_timeout_jetpack_jitm_b8dbf917028670418697420086df2d7','1501551533','no'),(2246,'_transient_jetpack_jitm_b8dbf917028670418697420086df2d7','a:1:{s:18:\"last_response_time\";i:1501551233;}','no'),(2247,'_transient_timeout_epc_purged_d1060c735929dec9a257a2136fd1fbbf','1501551295','no'),(2248,'_transient_epc_purged_d1060c735929dec9a257a2136fd1fbbf','1501551235','no'),(2262,'_transient_timeout_jetpack_jitm_ecb0bf27cd5a578c6fac10e81371014','1501551555','no'),(2263,'_transient_jetpack_jitm_ecb0bf27cd5a578c6fac10e81371014','a:1:{s:18:\"last_response_time\";i:1501551255;}','no'),(2264,'_transient_timeout_jetpack_jitm_92a34da0c8304877bb274b9bf15a05c','1501551555','no'),(2265,'_transient_jetpack_jitm_92a34da0c8304877bb274b9bf15a05c','a:1:{s:18:\"last_response_time\";i:1501551255;}','no'),(2266,'_transient_timeout_epc_purged_44c4240e9a74054779a5ed093d12cae8','1501551356','no'),(2267,'_transient_epc_purged_44c4240e9a74054779a5ed093d12cae8','1501551296','no'),(2286,'_transient_timeout_jetpack_jitm_f248112093f5a5157d36555e90164a9','1501551663','no'),(2287,'_transient_jetpack_jitm_f248112093f5a5157d36555e90164a9','a:1:{s:18:\"last_response_time\";i:1501551363;}','no'),(2288,'_transient_timeout_jetpack_jitm_e98a18f10010721dad9bc811ace166b','1501551663','no'),(2289,'_transient_jetpack_jitm_e98a18f10010721dad9bc811ace166b','a:1:{s:18:\"last_response_time\";i:1501551363;}','no'),(2300,'_transient_timeout_jetpack_jitm_0177d49997548d4f17b1586efaa69d9','1501552062','no'),(2301,'_transient_jetpack_jitm_0177d49997548d4f17b1586efaa69d9','a:1:{s:18:\"last_response_time\";i:1501551762;}','no'),(2302,'_transient_timeout_epc_purged_209126c103d664865aa6ee8c25995090','1501551754','no'),(2303,'_transient_epc_purged_209126c103d664865aa6ee8c25995090','1501551694','no'),(2314,'_transient_timeout_jetpack_jitm_5b581b85a2e25212c08f4e6fd612486','1501551999','no'),(2315,'_transient_jetpack_jitm_5b581b85a2e25212c08f4e6fd612486','a:1:{s:18:\"last_response_time\";i:1501551699;}','no'),(2316,'_transient_timeout_jetpack_jitm_fd057c9db6b4984399248759c93012b','1501551999','no'),(2317,'_transient_jetpack_jitm_fd057c9db6b4984399248759c93012b','a:1:{s:18:\"last_response_time\";i:1501551699;}','no'),(2326,'_transient_timeout_jetpack_jitm_3c59a7b00bb63d4be4f49718d47a8d5','1501552035','no'),(2327,'_transient_jetpack_jitm_3c59a7b00bb63d4be4f49718d47a8d5','a:1:{s:18:\"last_response_time\";i:1501551735;}','no'),(2328,'_transient_timeout_jetpack_jitm_b87f6b8eacc69b0719d95d10f42d918','1501552035','no'),(2329,'_transient_jetpack_jitm_b87f6b8eacc69b0719d95d10f42d918','a:1:{s:18:\"last_response_time\";i:1501551735;}','no'),(2339,'_transient_timeout_jetpack_jitm_125c7727a72e0a7b010e07355cc69eb','1501552447','no'),(2340,'_transient_jetpack_jitm_125c7727a72e0a7b010e07355cc69eb','a:1:{s:18:\"last_response_time\";i:1501552147;}','no'),(2456,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(2496,'_transient_timeout_epc_purged_d75110cee93dc659bb954140eeebae91','1501552251','no'),(2497,'_transient_epc_purged_d75110cee93dc659bb954140eeebae91','1501552191','no'),(2509,'_transient_timeout_jetpack_jitm_50c43cb62dda5efabe5edc3857c047a','1501552540','no'),(2510,'_transient_jetpack_jitm_50c43cb62dda5efabe5edc3857c047a','a:1:{s:18:\"last_response_time\";i:1501552240;}','no'),(2511,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1505188082;}','no'),(2519,'_site_transient_et_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1505188055;}','no'),(2530,'_transient_timeout_jetpack_jitm_b1283fc068a25eb1d272b03a36c89ff','1501552570','no'),(2531,'_transient_jetpack_jitm_b1283fc068a25eb1d272b03a36c89ff','a:1:{s:18:\"last_response_time\";i:1501552270;}','no'),(2539,'recently_activated','a:0:{}','yes'),(2547,'_transient_timeout_plugin_slugs','1505274482','no'),(2548,'_transient_plugin_slugs','a:10:{i:0;s:19:\"akismet/akismet.php\";i:1;s:42:\"divi-100-hamburger-menu/hamburger-menu.php\";i:2;s:34:\"divi-100-login-page/login-page.php\";i:3;s:49:\"elegant-themes-support/elegant-themes-support.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:63:\"password-protected-categories/password-protected-categories.php\";i:6;s:47:\"post-tags-and-categories-for-pages/post-tag.php\";i:7;s:29:\"use-any-font/use-any-font.php\";i:8;s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";i:9;s:41:\"wordpress-php-info/wordpress-php-info.php\";}','no'),(2588,'et_divi_100_custom_hamburger_menu','s:114:\"a:4:{s:4:\"type\";s:1:\"1\";s:5:\"style\";s:1:\"3\";s:13:\"default-color\";s:7:\"#37474f\";s:12:\"active-color\";s:7:\"#ff9100\";}\";','yes'),(2608,'_transient_timeout_jetpack_jitm_b8fd11272142ef6d8563bddc23f97c2','1501553417','no'),(2609,'_transient_jetpack_jitm_b8fd11272142ef6d8563bddc23f97c2','a:1:{s:18:\"last_response_time\";i:1501553117;}','no'),(2622,'_transient_timeout__omapi_validate','1501557141','no'),(2623,'_transient__omapi_validate','1','no'),(2632,'_transient_timeout_jetpack_jitm_99d0ee8c2617d57361c014b9006e5df','1501553864','no'),(2633,'_transient_jetpack_jitm_99d0ee8c2617d57361c014b9006e5df','a:1:{s:18:\"last_response_time\";i:1501553564;}','no'),(2645,'_transient_timeout_jetpack_jitm_39b811ac298255aac716ac525b81253','1501553936','no'),(2646,'_transient_jetpack_jitm_39b811ac298255aac716ac525b81253','a:1:{s:18:\"last_response_time\";i:1501553636;}','no'),(2973,'_transient_timeout_jetpack_jitm_f4426e3609d84656e94cc2766d25fc9','1501605093','no'),(2974,'_transient_jetpack_jitm_f4426e3609d84656e94cc2766d25fc9','a:1:{s:18:\"last_response_time\";i:1501604793;}','no'),(2996,'_transient_timeout_jetpack_jitm_994a0918de7bda4898522947c9151dc','1501605179','no'),(2997,'_transient_jetpack_jitm_994a0918de7bda4898522947c9151dc','a:1:{s:18:\"last_response_time\";i:1501604879;}','no'),(3024,'widget_blog-stats','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(3027,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(3030,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(3707,'_transient_timeout_jetpack_https_test','1501719053','no'),(3708,'_transient_jetpack_https_test','1','no'),(3709,'_transient_timeout_jpp_li_743dbc125c7498343f90093ffb3aaa9b','1501632714','no'),(3710,'_transient_jpp_li_743dbc125c7498343f90093ffb3aaa9b','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:61:\"{\"trusted_header\":\"REMOTE_ADDR\",\"segments\":1,\"reverse\":false}\";s:17:\"seconds_remaining\";i:60;s:16:\"blocked_attempts\";N;s:6:\"expire\";i:1501632714;}','no'),(3711,'_transient_timeout_jpp_headers_updated_recently','1501719054','no'),(3712,'_transient_jpp_headers_updated_recently','1','no'),(3915,'_transient_timeout_jetpack_jitm_1f9e7a9b81868e13417d4d3bec19343','1501636228','no'),(3916,'_transient_jetpack_jitm_1f9e7a9b81868e13417d4d3bec19343','a:1:{s:18:\"last_response_time\";i:1501635928;}','no'),(3917,'_transient_timeout_jetpack_jitm_cefb43e9fb0e0a17e84ffccb99602be','1501636247','no'),(3918,'_transient_jetpack_jitm_cefb43e9fb0e0a17e84ffccb99602be','a:1:{s:18:\"last_response_time\";i:1501635947;}','no'),(4013,'_transient_timeout_jetpack_jitm_275a1b8dd1d45a9989f2a7cd5b84a72','1501637209','no'),(4014,'_transient_jetpack_jitm_275a1b8dd1d45a9989f2a7cd5b84a72','a:1:{s:18:\"last_response_time\";i:1501636909;}','no'),(4015,'_transient_timeout_jetpack_jitm_36e66b8ce99759e1dd0d82e7734194e','1501637212','no'),(4016,'_transient_jetpack_jitm_36e66b8ce99759e1dd0d82e7734194e','a:1:{s:18:\"last_response_time\";i:1501636912;}','no'),(4071,'_transient_timeout_jetpack_jitm_39238680e7ace1089e94ad4271affb3','1501637635','no'),(4072,'_transient_jetpack_jitm_39238680e7ace1089e94ad4271affb3','a:1:{s:18:\"last_response_time\";i:1501637335;}','no'),(4073,'_transient_timeout_jetpack_jitm_6b0241647945457903ab034bfbb9127','1501637635','no'),(4074,'_transient_jetpack_jitm_6b0241647945457903ab034bfbb9127','a:1:{s:18:\"last_response_time\";i:1501637335;}','no'),(4196,'_transient_timeout_jetpack_jitm_81f79fdb8a4e10c3d0a0ebd29bd8a0a','1501639603','no'),(4197,'_transient_timeout_jetpack_jitm_b291a4739974ff89b5c38eb379d22f5','1501639603','no'),(4198,'_transient_jetpack_jitm_81f79fdb8a4e10c3d0a0ebd29bd8a0a','a:1:{s:18:\"last_response_time\";i:1501639303;}','no'),(4199,'_transient_jetpack_jitm_b291a4739974ff89b5c38eb379d22f5','a:1:{s:18:\"last_response_time\";i:1501639303;}','no'),(4200,'_transient_timeout_jetpack_jitm_a3ab173ecf939e8bd199fe698b8edf9','1501639615','no'),(4201,'_transient_jetpack_jitm_a3ab173ecf939e8bd199fe698b8edf9','a:1:{s:18:\"last_response_time\";i:1501639315;}','no'),(4207,'_transient_timeout_jetpack_jitm_bf1d7fa49409e777f02a5077897ee2b','1501639683','no'),(4208,'_transient_jetpack_jitm_bf1d7fa49409e777f02a5077897ee2b','a:1:{s:18:\"last_response_time\";i:1501639383;}','no'),(4280,'_transient_timeout_jetpack_idc_allowed','1501650767','no'),(4281,'_transient_jetpack_idc_allowed','1','no'),(4291,'_transient_timeout_jetpack_is_single_user','1501691552','no'),(4292,'_transient_jetpack_is_single_user','1','no'),(4305,'_site_transient_timeout_browser_7b4fb083b04390f6ff485892d3977a9a','1502253166','no'),(4306,'_site_transient_browser_7b4fb083b04390f6ff485892d3977a9a','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(4307,'_site_transient_timeout_community-events-b0e0943f9f90e04e75a70f183e0c0f17','1501691573','no'),(4308,'_site_transient_community-events-b0e0943f9f90e04e75a70f183e0c0f17','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"220.227.89.0\";}s:6:\"events\";a:0:{}}','no'),(4309,'_transient_timeout_jetpack_jitm_e61e2818dbf585fe283dbba6a2f3909','1501649530','no'),(4310,'_transient_jetpack_jitm_e61e2818dbf585fe283dbba6a2f3909','a:1:{s:18:\"last_response_time\";i:1501649230;}','no'),(4327,'_transient_timeout_brute_use_math','1501649193','no'),(4328,'_transient_brute_use_math','1','no'),(4329,'jetpack_protect_error','Invalid Action Specified','no'),(4330,'_site_transient_timeout_browser_cdf57348dffaa17c6bc7f1847b040f34','1502253396','no'),(4331,'_site_transient_browser_cdf57348dffaa17c6bc7f1847b040f34','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"59.0.3071.115\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(4364,'_transient_timeout_wpcom_subscribers_total','1501652617','no'),(4365,'_transient_wpcom_subscribers_total','a:2:{s:6:\"status\";s:7:\"success\";s:5:\"value\";i:0;}','no'),(4377,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1501649527','no'),(4378,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(4382,'_transient_timeout_jetpack_jitm_43ebdb5a156e606dcb672f9982d5722','1501649532','no'),(4383,'_transient_jetpack_jitm_43ebdb5a156e606dcb672f9982d5722','a:1:{s:18:\"last_response_time\";i:1501649232;}','no'),(4384,'_transient_timeout_jetpack_jitm_689f1cadc8bb53f06a70dcd5e074d62','1501649554','no'),(4385,'_transient_jetpack_jitm_689f1cadc8bb53f06a70dcd5e074d62','a:1:{s:18:\"last_response_time\";i:1501649254;}','no'),(4390,'_transient_timeout_jetpack_last_plugin_sync','1501652868','no'),(4391,'_transient_jetpack_last_plugin_sync','1501649268','no'),(4396,'_transient_timeout_jetpack_jitm_28f85db169e319b297c19ab94253084','1501649561','no'),(4397,'_transient_jetpack_jitm_28f85db169e319b297c19ab94253084','a:1:{s:18:\"last_response_time\";i:1501649261;}','no'),(4400,'jetpack_sync_settings_disable','0','yes'),(4401,'jpsq_sync-1501649268.748685-853855-2','a:6:{i:0;s:18:\"deactivated_plugin\";i:1;a:2:{i:0;s:19:\"jetpack/jetpack.php\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.7485868930816650390625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4402,'jpsq_sync-1501649268.758516-853855-3','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:14:\"active_plugins\";i:1;a:1:{i:2;s:19:\"jetpack/jetpack.php\";}i:2;a:0:{}}i:2;i:1;i:3;d:1501649268.7584569454193115234375;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4403,'_transient_timeout_jetpack_sync_constants_await','1501652868','no'),(4404,'_transient_jetpack_sync_constants_await','1501649268.7615','no'),(4405,'jpsq_sync-1501649268.762911-853855-4','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:16:\"EMPTY_TRASH_DAYS\";i:1;i:30;}i:2;i:1;i:3;d:1501649268.7628490924835205078125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4406,'jpsq_sync-1501649268.763713-853855-5','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:17:\"WP_POST_REVISIONS\";i:1;b:1;}i:2;i:1;i:3;d:1501649268.763657093048095703125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4407,'jpsq_sync-1501649268.764513-853855-6','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:7:\"ABSPATH\";i:1;s:48:\"/hermes/bosnaweb13a/b2058/glo.copyvet/wordpress/\";}i:2;i:1;i:3;d:1501649268.7644569873809814453125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4408,'jpsq_sync-1501649268.765281-853855-7','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:14:\"WP_CONTENT_DIR\";i:1;s:58:\"/hermes/bosnaweb13a/b2058/glo.copyvet/wordpress/wp-content\";}i:2;i:1;i:3;d:1501649268.765225887298583984375;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4409,'jpsq_sync-1501649268.765895-853855-8','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:16:\"JETPACK__VERSION\";i:1;s:3:\"5.2\";}i:2;i:1;i:3;d:1501649268.765841007232666015625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4410,'jpsq_sync-1501649268.766679-853855-9','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:1;i:60;}i:2;i:1;i:3;d:1501649268.766624927520751953125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4411,'jpsq_sync-1501649268.767392-853855-10','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:11:\"PHP_VERSION\";i:1;s:6:\"5.5.22\";}i:2;i:1;i:3;d:1501649268.7673389911651611328125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4412,'jpsq_sync-1501649268.768428-853855-11','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:15:\"WP_MEMORY_LIMIT\";i:1;s:3:\"40M\";}i:2;i:1;i:3;d:1501649268.768374919891357421875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4413,'jpsq_sync-1501649268.770504-853855-12','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1;s:4:\"256M\";}i:2;i:1;i:3;d:1501649268.7704410552978515625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4414,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:1997963485;s:14:\"WP_CONTENT_DIR\";i:4253123775;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:2954231189;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:794795873;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;}','yes'),(4415,'_transient_timeout_jetpack_sync_callables_await','1501649328','no'),(4416,'_transient_jetpack_sync_callables_await','1501649268.7723','no'),(4417,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:4:\"http\";}','yes'),(4418,'jpsq_sync-1501649268.791017-853855-13','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"wp_max_upload_size\";i:1;i:8388608;}i:2;i:1;i:3;d:1501649268.7909429073333740234375;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4419,'jpsq_sync-1501649268.792032-853855-14','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:15:\"is_main_network\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.79197406768798828125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4420,'jpsq_sync-1501649268.792924-853855-15','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"is_multi_site\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.7928550243377685546875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4421,'jpsq_sync-1501649268.794064-853855-16','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:17:\"main_network_site\";i:1;s:35:\"http://copyvet.globat.com/wordpress\";}i:2;i:1;i:3;d:1501649268.794002056121826171875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4422,'jpsq_sync-1501649268.794769-853855-17','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"site_url\";i:1;s:35:\"http://copyvet.globat.com/wordpress\";}i:2;i:1;i:3;d:1501649268.794712066650390625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4423,'jpsq_sync-1501649268.795602-853855-18','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"home_url\";i:1;s:35:\"http://copyvet.globat.com/wordpress\";}i:2;i:1;i:3;d:1501649268.795547008514404296875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4424,'jpsq_sync-1501649268.796374-853855-19','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:16:\"single_user_site\";i:1;b:1;}i:2;i:1;i:3;d:1501649268.79631900787353515625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4425,'jpsq_sync-1501649268.797331-853855-20','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:7:\"updates\";i:1;a:5:{s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:9:\"wordpress\";i:0;s:12:\"translations\";i:0;s:5:\"total\";i:0;}}i:2;i:1;i:3;d:1501649268.79726696014404296875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4426,'jpsq_sync-1501649268.798244-853855-21','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:28:\"has_file_system_write_access\";i:1;b:1;}i:2;i:1;i:3;d:1501649268.7981860637664794921875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4427,'jpsq_sync-1501649268.799064-853855-22','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:21:\"is_version_controlled\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.7990019321441650390625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4428,'jpsq_sync-1501649268.799941-853855-23','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"taxonomies\";i:1;a:7:{s:8:\"category\";O:8:\"stdClass\":23:{s:4:\"name\";s:8:\"category\";s:5:\"label\";s:10:\"Categories\";s:6:\"labels\";O:8:\"stdClass\":21:{s:4:\"name\";s:10:\"Categories\";s:13:\"singular_name\";s:8:\"Category\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:14:\"All Categories\";s:11:\"parent_item\";s:15:\"Parent Category\";s:17:\"parent_item_colon\";s:16:\"Parent Category:\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:20:\"No categories found.\";s:8:\"no_terms\";s:13:\"No categories\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:9:\"menu_name\";s:10:\"Categories\";s:14:\"name_admin_bar\";s:8:\"category\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:15:\"edit_categories\";s:12:\"delete_terms\";s:17:\"delete_categories\";s:12:\"assign_terms\";s:17:\"assign_categories\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:1;s:7:\"ep_mask\";i:512;s:4:\"slug\";s:8:\"category\";}s:9:\"query_var\";s:13:\"category_name\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:10:\"categories\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:8:\"post_tag\";O:8:\"stdClass\":23:{s:4:\"name\";s:8:\"post_tag\";s:5:\"label\";s:4:\"Tags\";s:6:\"labels\";O:8:\"stdClass\":21:{s:4:\"name\";s:4:\"Tags\";s:13:\"singular_name\";s:3:\"Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:8:\"post_tag\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:16:\"manage_post_tags\";s:10:\"edit_terms\";s:14:\"edit_post_tags\";s:12:\"delete_terms\";s:16:\"delete_post_tags\";s:12:\"assign_terms\";s:16:\"assign_post_tags\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:1024;s:4:\"slug\";s:3:\"tag\";}s:9:\"query_var\";s:3:\"tag\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:4:\"tags\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Terms_Controller\";s:8:\"_builtin\";b:1;}s:8:\"nav_menu\";O:8:\"stdClass\":23:{s:4:\"name\";s:8:\"nav_menu\";s:5:\"label\";s:16:\"Navigation Menus\";s:6:\"labels\";O:8:\"stdClass\":22:{s:4:\"name\";s:16:\"Navigation Menus\";s:13:\"singular_name\";s:15:\"Navigation Menu\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:16:\"Navigation Menus\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"menu_name\";s:16:\"Navigation Menus\";s:14:\"name_admin_bar\";s:15:\"Navigation Menu\";s:8:\"archives\";s:16:\"Navigation Menus\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:0;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:11:\"object_type\";a:1:{i:0;s:13:\"nav_menu_item\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:13:\"link_category\";O:8:\"stdClass\":23:{s:4:\"name\";s:13:\"link_category\";s:5:\"label\";s:15:\"Link Categories\";s:6:\"labels\";O:8:\"stdClass\":22:{s:4:\"name\";s:15:\"Link Categories\";s:13:\"singular_name\";s:13:\"Link Category\";s:12:\"search_items\";s:22:\"Search Link Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:19:\"All Link Categories\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:18:\"Edit Link Category\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:20:\"Update Link Category\";s:12:\"add_new_item\";s:21:\"Add New Link Category\";s:13:\"new_item_name\";s:22:\"New Link Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"menu_name\";s:15:\"Link Categories\";s:14:\"name_admin_bar\";s:13:\"Link Category\";s:8:\"archives\";s:19:\"All Link Categories\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:18:\"publicly_queryable\";b:0;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"link\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:12:\"manage_links\";s:10:\"edit_terms\";s:12:\"manage_links\";s:12:\"delete_terms\";s:12:\"manage_links\";s:12:\"assign_terms\";s:12:\"manage_links\";}s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:11:\"post_format\";O:8:\"stdClass\":23:{s:4:\"name\";s:11:\"post_format\";s:5:\"label\";s:6:\"Format\";s:6:\"labels\";O:8:\"stdClass\":22:{s:4:\"name\";s:6:\"Format\";s:13:\"singular_name\";s:6:\"Format\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:6:\"Format\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"menu_name\";s:6:\"Format\";s:14:\"name_admin_bar\";s:6:\"Format\";s:8:\"archives\";s:6:\"Format\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:0;s:18:\"show_in_quick_edit\";b:0;s:17:\"show_admin_column\";b:0;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":4:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:4:\"slug\";s:4:\"type\";}s:9:\"query_var\";s:11:\"post_format\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:1;}s:16:\"project_category\";O:8:\"stdClass\":23:{s:4:\"name\";s:16:\"project_category\";s:5:\"label\";s:18:\"Project Categories\";s:6:\"labels\";O:8:\"stdClass\":22:{s:4:\"name\";s:18:\"Project Categories\";s:13:\"singular_name\";s:16:\"Project Category\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:14:\"All Categories\";s:11:\"parent_item\";s:15:\"Parent Category\";s:17:\"parent_item_colon\";s:16:\"Parent Category:\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:20:\"No categories found.\";s:8:\"no_terms\";s:13:\"No categories\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:9:\"menu_name\";s:10:\"Categories\";s:14:\"name_admin_bar\";s:16:\"Project Category\";s:8:\"archives\";s:14:\"All Categories\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:11:\"object_type\";a:1:{i:0;s:7:\"project\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":5:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:1:\"0\";s:0:\"\";s:4:\"slug\";s:16:\"project_category\";}s:9:\"query_var\";s:16:\"project_category\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}s:11:\"project_tag\";O:8:\"stdClass\":23:{s:4:\"name\";s:11:\"project_tag\";s:5:\"label\";s:12:\"Project Tags\";s:6:\"labels\";O:8:\"stdClass\":22:{s:4:\"name\";s:12:\"Project Tags\";s:13:\"singular_name\";s:11:\"Project Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";s:10:\"Parent Tag\";s:17:\"parent_item_colon\";s:11:\"Parent Tag:\";s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:11:\"Project Tag\";s:8:\"archives\";s:8:\"All Tags\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:18:\"publicly_queryable\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:11:\"object_type\";a:1:{i:0;s:7:\"project\";}s:3:\"cap\";O:8:\"stdClass\":4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:7:\"rewrite\";O:8:\"stdClass\":5:{s:10:\"with_front\";b:1;s:12:\"hierarchical\";b:0;s:7:\"ep_mask\";i:0;s:1:\"0\";s:0:\"\";s:4:\"slug\";s:11:\"project_tag\";}s:9:\"query_var\";s:11:\"project_tag\";s:21:\"update_count_callback\";N;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";N;s:8:\"_builtin\";b:0;}}}i:2;i:1;i:3;d:1501649268.7998669147491455078125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4429,'jpsq_sync-1501649268.802198-853855-24','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"post_types\";i:1;a:11:{s:4:\"post\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:4:\"post\";s:5:\"label\";s:5:\"Posts\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:5:\"Posts\";s:13:\"singular_name\";s:4:\"Post\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:9:\"All Posts\";s:8:\"archives\";s:13:\"Post Archives\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:5:\"Posts\";s:14:\"name_admin_bar\";s:4:\"Post\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:5;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"posts\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Posts_Controller\";}s:4:\"page\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:4:\"page\";s:5:\"label\";s:5:\"Pages\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:5:\"Pages\";s:13:\"singular_name\";s:4:\"Page\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Page\";s:9:\"edit_item\";s:9:\"Edit Page\";s:8:\"new_item\";s:8:\"New Page\";s:9:\"view_item\";s:9:\"View Page\";s:10:\"view_items\";s:10:\"View Pages\";s:12:\"search_items\";s:12:\"Search Pages\";s:9:\"not_found\";s:15:\"No pages found.\";s:18:\"not_found_in_trash\";s:24:\"No pages found in Trash.\";s:17:\"parent_item_colon\";s:12:\"Parent Page:\";s:9:\"all_items\";s:9:\"All Pages\";s:8:\"archives\";s:13:\"Page Archives\";s:10:\"attributes\";s:15:\"Page Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into page\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this page\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter pages list\";s:21:\"items_list_navigation\";s:21:\"Pages list navigation\";s:10:\"items_list\";s:10:\"Pages list\";s:9:\"menu_name\";s:5:\"Pages\";s:14:\"name_admin_bar\";s:4:\"Page\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:1;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";i:20;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"page\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";s:10:\"edit_pages\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"pages\";s:21:\"rest_controller_class\";s:24:\"WP_REST_Posts_Controller\";}s:10:\"attachment\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:10:\"attachment\";s:5:\"label\";s:5:\"Media\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:5:\"Media\";s:13:\"singular_name\";s:5:\"Media\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:10:\"Edit Media\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:20:\"View Attachment Page\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:5:\"Media\";s:8:\"archives\";s:5:\"Media\";s:10:\"attributes\";s:21:\"Attachment Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:5:\"Media\";s:14:\"name_admin_bar\";s:5:\"Media\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:1;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:12:\"upload_files\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";s:5:\"media\";s:21:\"rest_controller_class\";s:30:\"WP_REST_Attachments_Controller\";}s:8:\"revision\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:8:\"revision\";s:5:\"label\";s:9:\"Revisions\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:9:\"Revisions\";s:13:\"singular_name\";s:8:\"Revision\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:9:\"Revisions\";s:8:\"archives\";s:9:\"Revisions\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:9:\"Revisions\";s:14:\"name_admin_bar\";s:8:\"Revision\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:1;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:24:\"revision.php?revision=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}s:13:\"nav_menu_item\";O:12:\"WP_Post_Type\":30:{s:4:\"name\";s:13:\"nav_menu_item\";s:5:\"label\";s:21:\"Navigation Menu Items\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:21:\"Navigation Menu Items\";s:13:\"singular_name\";s:20:\"Navigation Menu Item\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:21:\"Navigation Menu Items\";s:8:\"archives\";s:21:\"Navigation Menu Items\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:21:\"Navigation Menu Items\";s:14:\"name_admin_bar\";s:20:\"Navigation Menu Item\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:8:\"supports\";a:0:{}s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}s:10:\"custom_css\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:10:\"custom_css\";s:5:\"label\";s:10:\"Custom CSS\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:10:\"Custom CSS\";s:13:\"singular_name\";s:10:\"Custom CSS\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:10:\"Custom CSS\";s:8:\"archives\";s:10:\"Custom CSS\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:10:\"Custom CSS\";s:14:\"name_admin_bar\";s:10:\"Custom CSS\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:0;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";s:3:\"cap\";O:8:\"stdClass\":13:{s:9:\"edit_post\";s:8:\"edit_css\";s:9:\"read_post\";s:4:\"read\";s:11:\"delete_post\";s:18:\"edit_theme_options\";s:10:\"edit_posts\";s:8:\"edit_css\";s:17:\"edit_others_posts\";s:8:\"edit_css\";s:13:\"publish_posts\";s:18:\"edit_theme_options\";s:18:\"read_private_posts\";s:4:\"read\";s:12:\"delete_posts\";s:18:\"edit_theme_options\";s:22:\"delete_published_posts\";s:18:\"edit_theme_options\";s:20:\"delete_private_posts\";s:18:\"edit_theme_options\";s:19:\"delete_others_posts\";s:18:\"edit_theme_options\";s:20:\"edit_published_posts\";s:8:\"edit_css\";s:12:\"create_posts\";s:8:\"edit_css\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}s:19:\"customize_changeset\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:19:\"customize_changeset\";s:5:\"label\";s:10:\"Changesets\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:10:\"Changesets\";s:13:\"singular_name\";s:9:\"Changeset\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:17:\"Add New Changeset\";s:9:\"edit_item\";s:14:\"Edit Changeset\";s:8:\"new_item\";s:13:\"New Changeset\";s:9:\"view_item\";s:14:\"View Changeset\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:17:\"Search Changesets\";s:9:\"not_found\";s:20:\"No changesets found.\";s:18:\"not_found_in_trash\";s:29:\"No changesets found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:14:\"All Changesets\";s:8:\"archives\";s:14:\"All Changesets\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:10:\"Changesets\";s:14:\"name_admin_bar\";s:9:\"Changeset\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:19:\"customize_changeset\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:0;s:16:\"delete_with_user\";b:0;s:8:\"_builtin\";b:1;s:10:\"_edit_link\";s:0:\"\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"customize\";s:9:\"read_post\";s:9:\"customize\";s:11:\"delete_post\";s:9:\"customize\";s:10:\"edit_posts\";s:9:\"customize\";s:17:\"edit_others_posts\";s:9:\"customize\";s:13:\"publish_posts\";s:9:\"customize\";s:18:\"read_private_posts\";s:9:\"customize\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:9:\"customize\";s:20:\"delete_private_posts\";s:9:\"customize\";s:22:\"delete_published_posts\";s:9:\"customize\";s:19:\"delete_others_posts\";s:9:\"customize\";s:18:\"edit_private_posts\";s:9:\"customize\";s:20:\"edit_published_posts\";s:12:\"do_not_allow\";s:12:\"create_posts\";s:9:\"customize\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}s:7:\"project\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:7:\"project\";s:5:\"label\";s:8:\"Projects\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:8:\"Projects\";s:13:\"singular_name\";s:7:\"Project\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:15:\"Add New Project\";s:9:\"edit_item\";s:12:\"Edit Project\";s:8:\"new_item\";s:11:\"New Project\";s:9:\"view_item\";s:12:\"View Project\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:15:\"Search Projects\";s:9:\"not_found\";s:13:\"Nothing found\";s:18:\"not_found_in_trash\";s:22:\"Nothing found in Trash\";s:17:\"parent_item_colon\";s:0:\"\";s:9:\"all_items\";s:12:\"All Projects\";s:8:\"archives\";s:12:\"All Projects\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:8:\"Projects\";s:14:\"name_admin_bar\";s:7:\"Project\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:0;s:18:\"publicly_queryable\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:17:\"show_in_admin_bar\";b:1;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:1;s:9:\"query_var\";s:7:\"project\";s:10:\"can_export\";b:1;s:16:\"delete_with_user\";N;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_post\";s:9:\"read_post\";s:9:\"read_post\";s:11:\"delete_post\";s:11:\"delete_post\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_posts\";s:20:\"delete_private_posts\";s:20:\"delete_private_posts\";s:22:\"delete_published_posts\";s:22:\"delete_published_posts\";s:19:\"delete_others_posts\";s:19:\"delete_others_posts\";s:18:\"edit_private_posts\";s:18:\"edit_private_posts\";s:20:\"edit_published_posts\";s:20:\"edit_published_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";a:5:{s:5:\"feeds\";b:1;s:4:\"slug\";s:7:\"project\";s:10:\"with_front\";b:0;s:5:\"pages\";b:1;s:7:\"ep_mask\";i:1;}s:12:\"show_in_rest\";b:0;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}s:8:\"feedback\";O:12:\"WP_Post_Type\":30:{s:4:\"name\";s:8:\"feedback\";s:5:\"label\";s:8:\"Feedback\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:8:\"Feedback\";s:13:\"singular_name\";s:8:\"Feedback\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:15:\"Search Feedback\";s:9:\"not_found\";s:17:\"No feedback found\";s:18:\"not_found_in_trash\";s:17:\"No feedback found\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:8:\"Feedback\";s:8:\"archives\";s:8:\"Feedback\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:8:\"Feedback\";s:14:\"name_admin_bar\";s:8:\"Feedback\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";N;s:9:\"menu_icon\";s:18:\"dashicons-feedback\";s:15:\"capability_type\";s:4:\"page\";s:12:\"map_meta_cap\";b:1;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";b:0;s:10:\"can_export\";b:1;s:16:\"delete_with_user\";N;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:16:\"post.php?post=%d\";s:3:\"cap\";O:8:\"stdClass\":15:{s:9:\"edit_post\";s:9:\"edit_page\";s:9:\"read_post\";s:9:\"read_page\";s:11:\"delete_post\";s:11:\"delete_page\";s:10:\"edit_posts\";s:10:\"edit_pages\";s:17:\"edit_others_posts\";s:17:\"edit_others_pages\";s:13:\"publish_posts\";s:13:\"publish_pages\";s:18:\"read_private_posts\";s:18:\"read_private_pages\";s:4:\"read\";s:4:\"read\";s:12:\"delete_posts\";s:12:\"delete_pages\";s:20:\"delete_private_posts\";s:20:\"delete_private_pages\";s:22:\"delete_published_posts\";s:22:\"delete_published_pages\";s:19:\"delete_others_posts\";s:19:\"delete_others_pages\";s:18:\"edit_private_posts\";s:18:\"edit_private_pages\";s:20:\"edit_published_posts\";s:20:\"edit_published_pages\";s:12:\"create_posts\";b:0;}s:7:\"rewrite\";b:0;s:8:\"supports\";a:0:{}s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";s:29:\"Grunion_Contact_Form_Endpoint\";}s:12:\"jp_pay_order\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:12:\"jp_pay_order\";s:5:\"label\";s:5:\"Order\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:5:\"Order\";s:13:\"singular_name\";s:5:\"Order\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:5:\"Order\";s:8:\"archives\";s:5:\"Order\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:5:\"Order\";s:14:\"name_admin_bar\";s:5:\"Order\";}s:11:\"description\";s:22:\"Simple Payments orders\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:0;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";s:12:\"jp_pay_order\";s:10:\"can_export\";b:1;s:16:\"delete_with_user\";N;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";s:3:\"cap\";O:8:\"stdClass\":8:{s:9:\"edit_post\";s:10:\"edit_posts\";s:9:\"read_post\";s:18:\"read_private_posts\";s:11:\"delete_post\";s:12:\"delete_posts\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}s:14:\"jp_pay_product\";O:12:\"WP_Post_Type\":29:{s:4:\"name\";s:14:\"jp_pay_product\";s:5:\"label\";s:7:\"Product\";s:6:\"labels\";O:8:\"stdClass\":26:{s:4:\"name\";s:7:\"Product\";s:13:\"singular_name\";s:7:\"Product\";s:7:\"add_new\";s:7:\"Add New\";s:12:\"add_new_item\";s:12:\"Add New Post\";s:9:\"edit_item\";s:9:\"Edit Post\";s:8:\"new_item\";s:8:\"New Post\";s:9:\"view_item\";s:9:\"View Post\";s:10:\"view_items\";s:10:\"View Posts\";s:12:\"search_items\";s:12:\"Search Posts\";s:9:\"not_found\";s:15:\"No posts found.\";s:18:\"not_found_in_trash\";s:24:\"No posts found in Trash.\";s:17:\"parent_item_colon\";N;s:9:\"all_items\";s:7:\"Product\";s:8:\"archives\";s:7:\"Product\";s:10:\"attributes\";s:15:\"Post Attributes\";s:16:\"insert_into_item\";s:16:\"Insert into post\";s:21:\"uploaded_to_this_item\";s:21:\"Uploaded to this post\";s:14:\"featured_image\";s:14:\"Featured Image\";s:18:\"set_featured_image\";s:18:\"Set featured image\";s:21:\"remove_featured_image\";s:21:\"Remove featured image\";s:18:\"use_featured_image\";s:21:\"Use as featured image\";s:17:\"filter_items_list\";s:17:\"Filter posts list\";s:21:\"items_list_navigation\";s:21:\"Posts list navigation\";s:10:\"items_list\";s:10:\"Posts list\";s:9:\"menu_name\";s:7:\"Product\";s:14:\"name_admin_bar\";s:7:\"Product\";}s:11:\"description\";s:24:\"Simple Payments products\";s:6:\"public\";b:0;s:12:\"hierarchical\";b:0;s:19:\"exclude_from_search\";b:1;s:18:\"publicly_queryable\";b:0;s:7:\"show_ui\";b:0;s:12:\"show_in_menu\";b:0;s:17:\"show_in_nav_menus\";b:0;s:17:\"show_in_admin_bar\";b:0;s:13:\"menu_position\";N;s:9:\"menu_icon\";N;s:15:\"capability_type\";s:4:\"post\";s:12:\"map_meta_cap\";b:0;s:20:\"register_meta_box_cb\";N;s:10:\"taxonomies\";a:0:{}s:11:\"has_archive\";b:0;s:9:\"query_var\";s:14:\"jp_pay_product\";s:10:\"can_export\";b:1;s:16:\"delete_with_user\";N;s:8:\"_builtin\";b:0;s:10:\"_edit_link\";s:0:\"\";s:3:\"cap\";O:8:\"stdClass\":8:{s:9:\"edit_post\";s:10:\"edit_posts\";s:9:\"read_post\";s:18:\"read_private_posts\";s:11:\"delete_post\";s:12:\"delete_posts\";s:10:\"edit_posts\";s:10:\"edit_posts\";s:17:\"edit_others_posts\";s:17:\"edit_others_posts\";s:13:\"publish_posts\";s:13:\"publish_posts\";s:18:\"read_private_posts\";s:18:\"read_private_posts\";s:12:\"create_posts\";s:10:\"edit_posts\";}s:7:\"rewrite\";b:0;s:12:\"show_in_rest\";b:1;s:9:\"rest_base\";b:0;s:21:\"rest_controller_class\";b:0;}}}i:2;i:1;i:3;d:1501649268.802134990692138671875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4430,'jpsq_sync-1501649268.804691-853855-25','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"post_type_features\";i:1;a:13:{s:4:\"post\";a:10:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:6:\"author\";b:1;s:9:\"thumbnail\";b:1;s:7:\"excerpt\";b:1;s:10:\"trackbacks\";b:1;s:13:\"custom-fields\";b:1;s:8:\"comments\";b:1;s:9:\"revisions\";b:1;s:12:\"post-formats\";b:1;}s:4:\"page\";a:9:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:6:\"author\";b:1;s:9:\"thumbnail\";b:1;s:15:\"page-attributes\";b:1;s:13:\"custom-fields\";b:1;s:8:\"comments\";b:1;s:9:\"revisions\";b:1;s:7:\"excerpt\";b:1;}s:10:\"attachment\";a:3:{s:5:\"title\";b:1;s:6:\"author\";b:1;s:8:\"comments\";b:1;}s:16:\"attachment:audio\";a:1:{s:9:\"thumbnail\";b:1;}s:16:\"attachment:video\";a:1:{s:9:\"thumbnail\";b:1;}s:8:\"revision\";a:1:{s:6:\"author\";b:1;}s:13:\"nav_menu_item\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:10:\"custom_css\";a:2:{s:5:\"title\";b:1;s:9:\"revisions\";b:1;}s:19:\"customize_changeset\";a:2:{s:5:\"title\";b:1;s:6:\"author\";b:1;}s:7:\"project\";a:8:{s:5:\"title\";b:1;s:6:\"author\";b:1;s:6:\"editor\";b:1;s:9:\"thumbnail\";b:1;s:7:\"excerpt\";b:1;s:8:\"comments\";b:1;s:9:\"revisions\";b:1;s:13:\"custom-fields\";b:1;}s:8:\"feedback\";a:2:{s:5:\"title\";b:1;s:6:\"editor\";b:1;}s:12:\"jp_pay_order\";a:2:{s:13:\"custom-fields\";b:1;s:7:\"excerpt\";b:1;}s:14:\"jp_pay_product\";a:4:{s:5:\"title\";b:1;s:6:\"editor\";b:1;s:9:\"thumbnail\";b:1;s:13:\"custom-fields\";b:1;}}}i:2;i:1;i:3;d:1501649268.8046290874481201171875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4431,'jpsq_sync-1501649268.806469-853855-26','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"shortcodes\";i:1;a:111:{i:0;s:10:\"wp_caption\";i:1;s:7:\"caption\";i:2;s:7:\"gallery\";i:3;s:8:\"playlist\";i:4;s:5:\"audio\";i:5;s:5:\"video\";i:6;s:5:\"embed\";i:7;s:5:\"latex\";i:8;s:15:\"archiveorg-book\";i:9;s:10:\"archiveorg\";i:10;s:8:\"archives\";i:11;s:8:\"bandcamp\";i:12;s:10:\"brightcove\";i:13;s:11:\"dailymotion\";i:14;s:19:\"dailymotion-channel\";i:15;s:4:\"digg\";i:16;s:8:\"facebook\";i:17;s:6:\"flickr\";i:18;s:5:\"getty\";i:19;s:4:\"gist\";i:20;s:10:\"googleapps\";i:21;s:10:\"googlemaps\";i:22;s:10:\"googleplus\";i:23;s:11:\"googlevideo\";i:24;s:8:\"gravatar\";i:25;s:16:\"gravatar_profile\";i:26;s:5:\"houzz\";i:27;s:4:\"hulu\";i:28;s:9:\"instagram\";i:29;s:11:\"kickstarter\";i:30;s:5:\"lytro\";i:31;s:26:\"mailchimp_subscriber_popup\";i:32;s:6:\"medium\";i:33;s:8:\"mixcloud\";i:34;s:9:\"polldaddy\";i:35;s:12:\"presentation\";i:36;s:5:\"slide\";i:37;s:4:\"quiz\";i:38;s:8:\"question\";i:39;s:6:\"answer\";i:40;s:5:\"wrong\";i:41;s:11:\"explanation\";i:42;s:6:\"scribd\";i:43;s:7:\"sitemap\";i:44;s:10:\"slideshare\";i:45;s:9:\"slideshow\";i:46;s:10:\"soundcloud\";i:47;s:7:\"spotify\";i:48;s:3:\"ted\";i:49;s:5:\"tweet\";i:50;s:6:\"twitch\";i:51;s:8:\"twitchtv\";i:52;s:16:\"twitter-timeline\";i:53;s:7:\"ustream\";i:54;s:13:\"ustreamsocial\";i:55;s:10:\"videopress\";i:56;s:7:\"wpvideo\";i:57;s:5:\"vimeo\";i:58;s:4:\"vine\";i:59;s:2:\"vr\";i:60;s:5:\"wufoo\";i:61;s:7:\"youtube\";i:62;s:25:\"jetpack_subscription_form\";i:63;s:22:\"blog_subscription_form\";i:64;s:24:\"jetpack_top_posts_widget\";i:65;s:14:\"upcomingevents\";i:66;s:12:\"contact-form\";i:67;s:13:\"contact-field\";i:68;s:6:\"recipe\";i:69;s:12:\"recipe-notes\";i:70;s:18:\"recipe-ingredients\";i:71;s:17:\"recipe-directions\";i:72;s:12:\"untappd-menu\";i:73;s:14:\"simple-payment\";i:74;s:7:\"stumble\";i:75;s:7:\"twitter\";i:76;s:10:\"feedburner\";i:77;s:7:\"retweet\";i:78;s:9:\"protected\";i:79;s:3:\"box\";i:80;s:7:\"tooltip\";i:81;s:10:\"learn_more\";i:82;s:6:\"button\";i:83;s:4:\"tabs\";i:84;s:12:\"tabcontainer\";i:85;s:17:\"imagetabcontainer\";i:86;s:12:\"imagetabtext\";i:87;s:7:\"tabtext\";i:88;s:10:\"tabcontent\";i:89;s:3:\"tab\";i:90;s:8:\"imagetab\";i:91;s:6:\"author\";i:92;s:12:\"author_image\";i:93;s:11:\"author_info\";i:94;s:13:\"pricing_table\";i:95;s:11:\"custom_list\";i:96;s:7:\"pricing\";i:97;s:7:\"feature\";i:98;s:7:\"dropcap\";i:99;s:11:\"testimonial\";i:100;s:5:\"quote\";i:101;s:8:\"one_half\";i:102;s:13:\"one_half_last\";i:103;s:9:\"one_third\";i:104;s:14:\"one_third_last\";i:105;s:10:\"one_fourth\";i:106;s:15:\"one_fourth_last\";i:107;s:9:\"two_third\";i:108;s:14:\"two_third_last\";i:109;s:12:\"three_fourth\";i:110;s:17:\"three_fourth_last\";}}i:2;i:1;i:3;d:1501649268.8064060211181640625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4432,'jpsq_sync-1501649268.807422-853855-27','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:27:\"rest_api_allowed_post_types\";i:1;a:9:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:8:\"revision\";i:3;s:8:\"feedback\";i:4;s:17:\"jetpack-portfolio\";i:5;s:13:\"jetpack-comic\";i:6;s:19:\"jetpack-testimonial\";i:7;s:12:\"jp_pay_order\";i:8;s:14:\"jp_pay_product\";}}i:2;i:1;i:3;d:1501649268.8073599338531494140625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4433,'jpsq_sync-1501649268.808308-853855-28','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:32:\"rest_api_allowed_public_metadata\";i:1;a:0:{}}i:2;i:1;i:3;d:1501649268.8082530498504638671875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4434,'jpsq_sync-1501649268.809079-853855-29','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"sso_is_two_step_required\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.8090229034423828125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4435,'jpsq_sync-1501649268.809958-853855-30','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:26:\"sso_should_hide_login_form\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.809897899627685546875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4436,'jpsq_sync-1501649268.810782-853855-31','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:18:\"sso_match_by_email\";i:1;b:1;}i:2;i:1;i:3;d:1501649268.8107221126556396484375;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4437,'jpsq_sync-1501649268.811473-853855-32','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:21:\"sso_new_user_override\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.81140995025634765625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4438,'jpsq_sync-1501649268.812446-853855-33','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:29:\"sso_bypass_default_login_form\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.8123838901519775390625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4439,'jpsq_sync-1501649268.813183-853855-34','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:10:\"wp_version\";i:1;s:3:\"4.8\";}i:2;i:1;i:3;d:1501649268.8131198883056640625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4440,'jpsq_sync-1501649268.814009-853855-35','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:11:\"get_plugins\";i:1;a:8:{s:19:\"akismet/akismet.php\";a:11:{s:4:\"Name\";s:17:\"Akismet Anti-Spam\";s:9:\"PluginURI\";s:20:\"https://akismet.com/\";s:7:\"Version\";s:5:\"3.3.3\";s:11:\"Description\";s:279:\"Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.\";s:6:\"Author\";s:10:\"Automattic\";s:9:\"AuthorURI\";s:41:\"https://automattic.com/wordpress-plugins/\";s:10:\"TextDomain\";s:7:\"akismet\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:17:\"Akismet Anti-Spam\";s:10:\"AuthorName\";s:10:\"Automattic\";}s:42:\"divi-100-hamburger-menu/hamburger-menu.php\";a:11:{s:4:\"Name\";s:23:\"Divi 100 Hamburger Menu\";s:9:\"PluginURI\";s:26:\"https://elegantthemes.com/\";s:7:\"Version\";s:5:\"0.0.1\";s:11:\"Description\";s:106:\"This plugin gives you the option to choose between 20 different hamburger menu variations for your header.\";s:6:\"Author\";s:14:\"Elegant Themes\";s:9:\"AuthorURI\";s:25:\"http://elegantthemes.com/\";s:10:\"TextDomain\";s:23:\"divi-100-hamburger-menu\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:23:\"Divi 100 Hamburger Menu\";s:10:\"AuthorName\";s:14:\"Elegant Themes\";}s:9:\"hello.php\";a:11:{s:4:\"Name\";s:11:\"Hello Dolly\";s:9:\"PluginURI\";s:41:\"http://wordpress.org/plugins/hello-dolly/\";s:7:\"Version\";s:3:\"1.6\";s:11:\"Description\";s:295:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.\";s:6:\"Author\";s:14:\"Matt Mullenweg\";s:9:\"AuthorURI\";s:13:\"http://ma.tt/\";s:10:\"TextDomain\";s:0:\"\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:11:\"Hello Dolly\";s:10:\"AuthorName\";s:14:\"Matt Mullenweg\";}s:19:\"jetpack/jetpack.php\";a:11:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:19:\"https://jetpack.com\";s:7:\"Version\";s:3:\"5.2\";s:11:\"Description\";s:218:\"Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.\";s:6:\"Author\";s:10:\"Automattic\";s:9:\"AuthorURI\";s:19:\"https://jetpack.com\";s:10:\"TextDomain\";s:7:\"jetpack\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:24:\"Jetpack by WordPress.com\";s:10:\"AuthorName\";s:10:\"Automattic\";}s:47:\"mojo-marketplace-wp-plugin/mojo-marketplace.php\";a:11:{s:4:\"Name\";s:16:\"MOJO Marketplace\";s:9:\"PluginURI\";s:0:\"\";s:7:\"Version\";s:5:\"1.1.3\";s:11:\"Description\";s:72:\"This plugin adds shortcodes, widgets, and themes to your WordPress site.\";s:6:\"Author\";s:11:\"Mike Hansen\";s:9:\"AuthorURI\";s:66:\"http://mikehansen.me?utm_campaign=plugin&utm_source=mojo_wp_plugin\";s:10:\"TextDomain\";s:26:\"mojo-marketplace-wp-plugin\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:16:\"MOJO Marketplace\";s:10:\"AuthorName\";s:11:\"Mike Hansen\";}s:37:\"optinmonster/optin-monster-wp-api.php\";a:11:{s:4:\"Name\";s:16:\"OptinMonster API\";s:9:\"PluginURI\";s:23:\"http://optinmonster.com\";s:7:\"Version\";s:5:\"1.2.1\";s:11:\"Description\";s:82:\"OptinMonster API plugin to connect your WordPress site to your OptinMonster forms.\";s:6:\"Author\";s:17:\"OptinMonster Team\";s:9:\"AuthorURI\";s:24:\"https://optinmonster.com\";s:10:\"TextDomain\";s:17:\"optin-monster-api\";s:10:\"DomainPath\";s:9:\"languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:16:\"OptinMonster API\";s:10:\"AuthorName\";s:17:\"OptinMonster Team\";}s:33:\"w3-total-cache/w3-total-cache.php\";a:11:{s:4:\"Name\";s:14:\"W3 Total Cache\";s:9:\"PluginURI\";s:57:\"https://www.w3-edge.com/wordpress-plugins/w3-total-cache/\";s:7:\"Version\";s:7:\"0.9.5.4\";s:11:\"Description\";s:244:\"The highest rated and most complete WordPress performance plugin. Dramatically improve the speed and user experience of your site. Add browser, page, object and database caching as well as minify and content delivery network (CDN) to WordPress.\";s:6:\"Author\";s:16:\"Frederick Townes\";s:9:\"AuthorURI\";s:42:\"http://www.linkedin.com/in/fredericktownes\";s:10:\"TextDomain\";s:14:\"w3-total-cache\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:1;s:5:\"Title\";s:14:\"W3 Total Cache\";s:10:\"AuthorName\";s:16:\"Frederick Townes\";}s:24:\"wpforms-lite/wpforms.php\";a:11:{s:4:\"Name\";s:12:\"WPForms Lite\";s:9:\"PluginURI\";s:19:\"https://wpforms.com\";s:7:\"Version\";s:5:\"1.3.8\";s:11:\"Description\";s:113:\"Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.\";s:6:\"Author\";s:7:\"WPForms\";s:9:\"AuthorURI\";s:19:\"https://wpforms.com\";s:10:\"TextDomain\";s:7:\"wpforms\";s:10:\"DomainPath\";s:9:\"languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:12:\"WPForms Lite\";s:10:\"AuthorName\";s:7:\"WPForms\";}}}i:2;i:1;i:3;d:1501649268.8139369487762451171875;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4441,'jpsq_sync-1501649268.815017-853855-36','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:14:\"active_modules\";i:1;a:22:{i:0;s:18:\"after-the-deadline\";i:1;s:12:\"contact-form\";i:2;s:20:\"custom-content-types\";i:3;s:10:\"custom-css\";i:4;s:19:\"gravatar-hovercards\";i:5;s:5:\"latex\";i:6;s:6:\"manage\";i:7;s:5:\"notes\";i:8;s:10:\"omnisearch\";i:9;s:13:\"post-by-email\";i:10;s:7:\"protect\";i:11;s:9:\"publicize\";i:12;s:10:\"sharedaddy\";i:13;s:10:\"shortcodes\";i:14;s:10:\"shortlinks\";i:15;s:5:\"stats\";i:16;s:13:\"subscriptions\";i:18;s:18:\"verification-tools\";i:19;s:17:\"widget-visibility\";i:20;s:7:\"widgets\";i:21;s:6:\"photon\";i:22;s:7:\"monitor\";}}i:2;i:1;i:3;d:1501649268.8149549961090087890625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4442,'jpsq_sync-1501649268.815879-853855-37','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:16:\"hosting_provider\";i:1;s:7:\"unknown\";}i:2;i:1;i:3;d:1501649268.81581592559814453125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4443,'jpsq_sync-1501649268.816556-853855-38','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:6:\"locale\";i:1;s:5:\"en_US\";}i:2;i:1;i:3;d:1501649268.8164980411529541015625;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4444,'jpsq_sync-1501649268.817419-853855-39','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"site_icon_url\";i:1;b:0;}i:2;i:1;i:3;d:1501649268.81735706329345703125;i:4;b:0;i:5;a:13:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:1;s:12:\"display_name\";s:9:\"copyvet10\";s:10:\"user_email\";s:26:\"feldman_jeremy@hotmail.com\";s:10:\"user_roles\";a:1:{i:0;s:13:\"administrator\";}s:15:\"translated_role\";s:13:\"administrator\";s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:2:\"ip\";s:14:\"68.132.224.241\";s:11:\"is_wp_admin\";b:1;}}','no'),(4445,'jetpack_callables_sync_checksum','a:27:{s:18:\"wp_max_upload_size\";i:4150424846;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:1150595317;s:8:\"site_url\";i:1150595317;s:8:\"home_url\";i:1150595317;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:3670322104;s:10:\"post_types\";i:598403014;s:18:\"post_type_features\";i:4165739327;s:10:\"shortcodes\";i:2055533497;s:27:\"rest_api_allowed_post_types\";i:696315151;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:4064703098;s:11:\"get_plugins\";i:99258114;s:14:\"active_modules\";i:2968934848;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;}','no'),(4446,'jetpack_next_sync_time_sync','1501649328','yes'),(4710,'et_support_site_id','eEUaqo!42@SI9Fh$yGwf','yes'),(4725,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4726,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.8.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-4.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.8.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.8.1\";s:7:\"version\";s:5:\"4.8.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1505311038;s:15:\"version_checked\";s:5:\"4.8.1\";s:12:\"translations\";a:0:{}}','no'),(5022,'et_google_api_settings','a:2:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:5:\"false\";}','yes'),(5027,'et_automatic_updates_options','a:2:{s:8:\"username\";s:7:\"copyvet\";s:7:\"api_key\";s:40:\"11b40b485a6c51b6b9f2e59713aefaa65040d56b\";}','yes'),(5566,'et_account_status','active','yes'),(5579,'uaf_css_updated_timestamp','1503312548','yes'),(5582,'uaf_current_version','4.7.3','yes'),(5583,'uaf_font_data','{\"170811071915\":{\"font_name\":\"quicksandlight\",\"font_path\":\"170811071915QuicksandLight\"},\"170811071939\":{\"font_name\":\"quicksandreg\",\"font_path\":\"170811071938QuicksandReg\"}}','yes'),(5588,'uaf_server_status','test_successfull','yes'),(5589,'uaf_server_msg','','yes'),(5591,'uaf_api_key','5X3X5F86AYAGX4CASJGG6N1D170804013809','yes'),(5592,'uaf_api_package','corporate','yes'),(6082,'_site_transient_timeout_browser_51a3f46bfabae39cd5aee62c6276c1dc','1502808143','no'),(6083,'_site_transient_browser_51a3f46bfabae39cd5aee62c6276c1dc','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"59.0.3071.115\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(6086,'uaf_font_implement','[]','yes'),(6545,'_transient_timeout_epc_purged_23aa9d07763dc72387dadef3b8663226','1502243194','no'),(6546,'_transient_epc_purged_23aa9d07763dc72387dadef3b8663226','1502243134','no'),(6553,'_transient_timeout_epc_purged_29c55462418e00473e22ffee98ab7908','1502291383','no'),(6554,'_transient_epc_purged_29c55462418e00473e22ffee98ab7908','1502291323','no'),(6561,'_transient_timeout_epc_purged_5b4908683750de963caa4a4c6ac147ba','1502291458','no'),(6562,'_transient_epc_purged_5b4908683750de963caa4a4c6ac147ba','1502291398','no'),(6916,'_transient_timeout_epc_purged_bb63d2273cdd85e7f44f337ba2b8fc23','1502321441','no'),(6917,'_transient_epc_purged_bb63d2273cdd85e7f44f337ba2b8fc23','1502321381','no'),(6941,'ppc_license_status','valid','yes'),(6942,'ppc_license_key','6bec50234dfe42697fc89de2901d62a4','yes'),(6943,'ppc_options','a:6:{s:16:\"password_expires\";i:1;s:14:\"show_protected\";s:3:\"yes\";s:10:\"form_title\";s:106:\"<span style=\"color: #ECEFF1;\">YOU\'RE CORDIALLY INVITED <span style=\"color: #ff9335;\">TO SEE MY WORK</span>\";s:12:\"form_message\";s:118:\"You will need a password, though. Contact me at <a href=\"mailto:jeremy@jeremyfeldman.com\">jeremy@jeremyfeldman.com</a>\";s:10:\"form_label\";s:9:\"Password:\";s:11:\"form_button\";s:5:\"LOGIN\";}','yes'),(6946,'ppc_wpseo_cache_cleared','nowpseo','yes'),(6966,'_transient_timeout_epc_purged_0e0a949cc76a93572615c2fc672d702f','1502325467','no'),(6967,'_transient_epc_purged_0e0a949cc76a93572615c2fc672d702f','1502325407','no'),(6974,'_transient_timeout_epc_purged_d74b954595c8951fcbf42b7157bc501c','1502325505','no'),(6975,'_transient_epc_purged_d74b954595c8951fcbf42b7157bc501c','1502325445','no'),(6976,'_transient_timeout_epc_purged_6ac36cbc9ec5fe9854149c09ac37f91a','1502325580','no'),(6977,'_transient_epc_purged_6ac36cbc9ec5fe9854149c09ac37f91a','1502325520','no'),(7100,'_site_transient_timeout_browser_0cc6eb6637a00c9e559f2fb4d8de25b9','1502941484','no'),(7101,'_site_transient_browser_0cc6eb6637a00c9e559f2fb4d8de25b9','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"10.1.2\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(7110,'4b60b14d080a855781d46e361d753b98','a:2:{s:7:\"timeout\";i:1505182954;s:5:\"value\";s:3028:\"{\"new_version\":\"1.1.4\",\"stable_version\":\"1.1.4\",\"name\":\"Password Protected Categories\",\"slug\":\"password-protected-categories\",\"url\":\"http:\\/\\/barn2.co.uk\\/wordpress-plugins\\/password-protected-categories\\/?changelog=1\",\"last_updated\":\"2017-07-27 13:11:26\",\"homepage\":\"http:\\/\\/barn2.co.uk\\/wordpress-plugins\\/password-protected-categories\\/\",\"package\":\"http:\\/\\/barn2.co.uk\\/edd-sl\\/package_download\\/MTUwNTM2Mjk1NDo2YmVjNTAyMzRkZmU0MjY5N2ZjODlkZTI5MDFkNjJhNDoxNjMyMTowNzExNDY0MTk0MGJhMWY0MDE4MGQxM2UwMjkwOWI0NjpodHRwQC8vZGV2LmplcmVteWZlbGRtYW4uY29tL3dvcmRwcmVzczow\",\"download_link\":\"http:\\/\\/barn2.co.uk\\/edd-sl\\/package_download\\/MTUwNTM2Mjk1NDo2YmVjNTAyMzRkZmU0MjY5N2ZjODlkZTI5MDFkNjJhNDoxNjMyMTowNzExNDY0MTk0MGJhMWY0MDE4MGQxM2UwMjkwOWI0NjpodHRwQC8vZGV2LmplcmVteWZlbGRtYW4uY29tL3dvcmRwcmVzczow\",\"sections\":{\"description\":\"<p>The only WordPress plugin to password protect entire categories of blog posts, products, events, portfolios, or other types of website content.<\\/p>\\n\",\"changelog\":\"<p><strong>1.1.4<\\/strong> - <em>Release date 7 June 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Bug on redirect from central login page using [category_login] shortcode.<\\/li>\\n<\\/ul>\\n<p><strong>1.1.3<\\/strong> - <em>Release date 6 June 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Potential conflict with WordPress 4.8.<\\/li>\\n<li>Tweak: Cache hidden categories to improve performance.<\\/li>\\n<\\/ul>\\n<p><strong>1.1.2<\\/strong>\\u00a0- <em>Release date 30 May 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Javascript bug for password field in admin.<\\/li>\\n<li>Fix: Hidden posts were incorrectly shown on their category\\/custom taxonomy page.<\\/li>\\n<\\/ul>\\n<p><strong>1.1.1<\\/strong> - <em>Release date 30 May 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Single posts in password protected categories were not protected (bug introduced in previous update).<\\/li>\\n<li>Fix: Password protection now works correctly for pages and attachments.<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"description\":[\"<p>The only WordPress plugin to password protect entire categories of blog posts, products, events, portfolios, or other types of website content.<\\/p>\\n\"],\"changelog\":[\"<p><strong>1.1.4<\\/strong> - <em>Release date 7 June 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Bug on redirect from central login page using [category_login] shortcode.<\\/li>\\n<\\/ul>\\n<p><strong>1.1.3<\\/strong> - <em>Release date 6 June 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Potential conflict with WordPress 4.8.<\\/li>\\n<li>Tweak: Cache hidden categories to improve performance.<\\/li>\\n<\\/ul>\\n<p><strong>1.1.2<\\/strong>\\u00a0- <em>Release date 30 May 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Javascript bug for password field in admin.<\\/li>\\n<li>Fix: Hidden posts were incorrectly shown on their category\\/custom taxonomy page.<\\/li>\\n<\\/ul>\\n<p><strong>1.1.1<\\/strong> - <em>Release date 30 May 2017<\\/em><\\/p>\\n<ul>\\n<li>Fix: Single posts in password protected categories were not protected (bug introduced in previous update).<\\/li>\\n<li>Fix: Password protection now works correctly for pages and attachments.<\\/li>\\n<\\/ul>\\n\"]}\";}','yes'),(7158,'et_divi_100_custom_login_page','s:394:\"a:9:{s:5:\"style\";s:1:\"1\";s:16:\"background-color\";s:7:\"#1f497d\";s:16:\"background-image\";s:0:\"\";s:36:\"background-image-background-image-id\";i:0;s:10:\"logo-image\";s:83:\"http://copyvet.globat.com/wordpress/wp-content/uploads/2017/07/cropped-IMG_6145.jpg\";s:24:\"logo-image-logo-image-id\";i:0;s:8:\"logo-url\";s:0:\"\";s:23:\"button-background-color\";s:7:\"#002250\";s:17:\"button-text-color\";s:7:\"#8bc34a\";}\";','yes'),(7326,'_site_transient_timeout_available_translations','1502415817','no'),(7327,'_site_transient_available_translations','a:108:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 10:11:36\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-29 08:49:40\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.5/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-30 18:40:55\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.1/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-09 09:24:45\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-04 16:58:43\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-08 21:01:45\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 08:46:26\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 14:28:04\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-14 23:24:44\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 06:22:33\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 16:58:53\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 06:24:08\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.8.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-30 10:51:58\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.8.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:51:51\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-02 03:57:05\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 19:47:01\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 10:03:08\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:53:43\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 17:31:04\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 10:38:53\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 07:43:08\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-01 04:48:11\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-30 16:09:17\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-31 15:12:02\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 16:37:11\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-30 18:58:36\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-09 15:50:45\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 11:00:29\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 06:42:50\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 09:14:18\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 12:37:07\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 12:45:35\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-07 20:55:07\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-07 17:27:08\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:29:26\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-19 08:19:39\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:39\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 12:45:08\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-04-13 13:55:54\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-04 08:42:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 23:23:50\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-06-12 09:20:11\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-16 18:44:50\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/4.8/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:48:16\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 11:02:15\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.5/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:3:\"4.8\";s:7:\"updated\";s:19:\"2017-07-05 19:40:47\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/4.8/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-03-05 09:45:10\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.18\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.18/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-02 21:02:39\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-31 08:47:10\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 19:34:18\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-27 16:44:39\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-02-16 13:24:21\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.5/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-01 07:32:10\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-02 13:47:38\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-04 20:03:38\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.18\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.18/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-26 21:35:20\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 08:14:27\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 10:26:15\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-10 10:38:14\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-09 13:26:18\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 14:03:23\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-04-24 08:35:30\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.5/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 12:07:44\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 22:53:12\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-31 11:38:12\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-10 15:50:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-28 14:27:29\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.7.5\";s:7:\"updated\";s:19:\"2017-05-13 09:55:38\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.5/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-07-25 01:27:21\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.8.1/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-03 15:43:25\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-04 07:53:05\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.8.1\";s:7:\"updated\";s:19:\"2017-08-10 14:10:34\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.8.1/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(7643,'category_children','a:0:{}','yes'),(7839,'_transient_timeout_epc_purged_592a701f952b4b7dba4ebb2a31e44322','1502480252','no'),(7840,'_transient_epc_purged_592a701f952b4b7dba4ebb2a31e44322','1502480192','no'),(8230,'_transient_timeout_epc_purged_452cf13807f935cda71faf28f3c142c7','1502483198','no'),(8231,'_transient_epc_purged_452cf13807f935cda71faf28f3c142c7','1502483138','no'),(8266,'_transient_timeout_epc_purged_4e012faff109cd58f0930ae1390c9de9','1502483404','no'),(8267,'_transient_epc_purged_4e012faff109cd58f0930ae1390c9de9','1502483344','no'),(8517,'_transient_timeout_epc_purged_e25e624614fdad86a62e1321b88ddb96','1502485326','no'),(8518,'_transient_epc_purged_e25e624614fdad86a62e1321b88ddb96','1502485266','no'),(8684,'_transient_timeout_epc_purged_8f40817c54b855d3d771f4f4cc02ff76','1502486733','no'),(8685,'_transient_epc_purged_8f40817c54b855d3d771f4f4cc02ff76','1502486673','no'),(8816,'_transient_timeout_epc_purged_86456906c9ad733c62bc6c6f330ad433','1502488342','no'),(8817,'_transient_epc_purged_86456906c9ad733c62bc6c6f330ad433','1502488282','no'),(8872,'_transient_timeout_epc_purged_d119a42db2835da48de7f29cc899e9f3','1502488496','no'),(8873,'_transient_epc_purged_d119a42db2835da48de7f29cc899e9f3','1502488436','no'),(8932,'_transient_timeout_epc_purged_80cad6a055bb59895d40189b65062045','1502488668','no'),(8933,'_transient_epc_purged_80cad6a055bb59895d40189b65062045','1502488608','no'),(8967,'uaf_disbale_editor_font_list','','yes'),(8968,'uaf_use_curl_uploader','','yes'),(8969,'uaf_use_absolute_font_path','','yes'),(8970,'uaf_use_alternative_server','','yes'),(9083,'_site_transient_timeout_browser_8f2e608537f9aee410499886546e6edb','1503366192','no'),(9084,'_site_transient_browser_8f2e608537f9aee410499886546e6edb','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"60.0.3112.90\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(9085,'_site_transient_timeout_community-events-6bd6676d2e936a84cc9e96eaea23e7c4','1502849053','no'),(9086,'_site_transient_community-events-6bd6676d2e936a84cc9e96eaea23e7c4','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"103.255.4.0\";}s:6:\"events\";a:1:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:57:\"? Learn to Host Your WordPress Site With DigitalOcean!\";s:3:\"url\";s:57:\"https://www.meetup.com/WordPress-Lahore/events/242488061/\";s:6:\"meetup\";s:24:\"WordPress Meetups Lahore\";s:10:\"meetup_url\";s:40:\"https://www.meetup.com/WordPress-Lahore/\";s:4:\"date\";s:19:\"2017-08-20 12:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Lahore, Punjab, Pakistan\";s:7:\"country\";s:2:\"PK\";s:8:\"latitude\";d:31.5599994659419991194226895458996295928955078125;s:9:\"longitude\";d:74.3499984741209942740169935859739780426025390625;}}}}','no'),(9096,'_site_transient_timeout_browser_999435bed2fa11c3d2b9105242e679fd','1503373766','no'),(9097,'_site_transient_browser_999435bed2fa11c3d2b9105242e679fd','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"60.0.3112.90\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(9140,'_transient_timeout_epc_purged_a48e5f9702ceaa133f27fe0896c9a0b0','1502805911','no'),(9141,'_transient_epc_purged_a48e5f9702ceaa133f27fe0896c9a0b0','1502805851','no'),(9278,'_site_transient_timeout_community-events-38618720a5e3dd900392c0034014f6c3','1502863784','no'),(9279,'_site_transient_community-events-38618720a5e3dd900392c0034014f6c3','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"50.118.145.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:35:\"Writing your first WordPress Plugin\";s:3:\"url\";s:65:\"https://www.meetup.com/Wordpress-for-developers/events/241928952/\";s:6:\"meetup\";s:24:\"WordPress for Developers\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Wordpress-for-developers/\";s:4:\"date\";s:19:\"2017-08-19 13:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Redwood Shores, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.53025000000000233058017329312860965728759765625;s:9:\"longitude\";d:-122.258319999999997662598616443574428558349609375;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"How to become a WordPress Business\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Monterey/events/242356961/\";s:6:\"meetup\";s:18:\"WordPress Monterey\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Monterey/\";s:4:\"date\";s:19:\"2017-08-22 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Monterey, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:36.58544200000000046202330850064754486083984375;s:9:\"longitude\";d:-121.852631000000002359229256398975849151611328125;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:62:\"New Date: 8/27/2017! East Bay WordPress Meetup Contributor Day\";s:3:\"url\";s:65:\"https://www.meetup.com/Eastbay-WordPress-Meetup/events/237830311/\";s:6:\"meetup\";s:35:\"The East Bay WordPress Meetup Group\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Eastbay-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-08-27 11:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Oakland, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.8084530000000000882209860719740390777587890625;s:9:\"longitude\";d:-122.265929999999997335180523805320262908935546875;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:26:\"Moving to HTTPS It\'s Time!\";s:3:\"url\";s:72:\"https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/241763971/\";s:6:\"meetup\";s:34:\"WordPress Bay Area Foothills Group\";s:10:\"meetup_url\";s:55:\"https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/\";s:4:\"date\";s:19:\"2017-08-30 13:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Milpitas, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.43281300000000300087776849977672100067138671875;s:9:\"longitude\";d:-121.907094999999998208295437507331371307373046875;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:27:\"WordPress Q&A and Topic TBD\";s:3:\"url\";s:50:\"https://www.meetup.com/sanjosewp/events/240230974/\";s:6:\"meetup\";s:29:\"The San Jose WordPress Meetup\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/sanjosewp/\";s:4:\"date\";s:19:\"2017-09-04 17:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"San Jose, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.24419400000000024419932742603123188018798828125;s:9:\"longitude\";d:-121.8893130000000013524186215363442897796630859375;}}}}','no'),(9285,'_transient_timeout_et_divi_customizer_option_set','1502910212','no'),(9286,'_transient_et_divi_customizer_option_set','theme','no'),(9302,'et_account_status_last_checked','1505147159','yes'),(9331,'_transient_timeout_epc_purged_ee98d0b7bd7528559141cd4cd6a3acf4','1502825731','no'),(9332,'_transient_epc_purged_ee98d0b7bd7528559141cd4cd6a3acf4','1502825671','no'),(9352,'_transient_timeout_epc_purged_ca9b63af54e95cf0f8dcf170eab923e1','1502826570','no'),(9353,'_transient_epc_purged_ca9b63af54e95cf0f8dcf170eab923e1','1502826510','no'),(9363,'_transient_timeout_epc_purged_40eaecbfba1431c12550e25dac199aed','1502836920','no'),(9364,'_transient_epc_purged_40eaecbfba1431c12550e25dac199aed','1502836860','no'),(9377,'_site_transient_timeout_browser_1c932a74f82e78c49e71dfc7cd4cc390','1503447218','no'),(9378,'_site_transient_browser_1c932a74f82e78c49e71dfc7cd4cc390','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"60.0.3112.90\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(9387,'_site_transient_timeout_community-events-3f2abb77e5012ac38e03fb5542f9703e','1502923689','no'),(9388,'_site_transient_community-events-3f2abb77e5012ac38e03fb5542f9703e','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"166.88.193.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:35:\"Writing your first WordPress Plugin\";s:3:\"url\";s:65:\"https://www.meetup.com/Wordpress-for-developers/events/241928952/\";s:6:\"meetup\";s:24:\"WordPress for Developers\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Wordpress-for-developers/\";s:4:\"date\";s:19:\"2017-08-19 13:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Redwood Shores, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.53025000000000233058017329312860965728759765625;s:9:\"longitude\";d:-122.258319999999997662598616443574428558349609375;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"How to become a WordPress Business\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Monterey/events/242356961/\";s:6:\"meetup\";s:18:\"WordPress Monterey\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Monterey/\";s:4:\"date\";s:19:\"2017-08-22 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Monterey, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:36.58544200000000046202330850064754486083984375;s:9:\"longitude\";d:-121.852631000000002359229256398975849151611328125;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:62:\"New Date: 8/27/2017! East Bay WordPress Meetup Contributor Day\";s:3:\"url\";s:65:\"https://www.meetup.com/Eastbay-WordPress-Meetup/events/237830311/\";s:6:\"meetup\";s:35:\"The East Bay WordPress Meetup Group\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Eastbay-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-08-27 11:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Oakland, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.8084530000000000882209860719740390777587890625;s:9:\"longitude\";d:-122.265929999999997335180523805320262908935546875;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:26:\"Moving to HTTPS It\'s Time!\";s:3:\"url\";s:72:\"https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/241763971/\";s:6:\"meetup\";s:34:\"WordPress Bay Area Foothills Group\";s:10:\"meetup_url\";s:55:\"https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/\";s:4:\"date\";s:19:\"2017-08-30 13:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Milpitas, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.43281300000000300087776849977672100067138671875;s:9:\"longitude\";d:-121.907094999999998208295437507331371307373046875;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:27:\"WordPress Q&A and Topic TBD\";s:3:\"url\";s:50:\"https://www.meetup.com/sanjosewp/events/240230974/\";s:6:\"meetup\";s:29:\"The San Jose WordPress Meetup\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/sanjosewp/\";s:4:\"date\";s:19:\"2017-09-04 17:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"San Jose, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.24419400000000024419932742603123188018798828125;s:9:\"longitude\";d:-121.8893130000000013524186215363442897796630859375;}}}}','no'),(9399,'_transient_timeout_epc_purged_a6242b12a6b0373cae811887ecb2b233','1502880656','no'),(9400,'_transient_epc_purged_a6242b12a6b0373cae811887ecb2b233','1502880596','no'),(9418,'_site_transient_timeout_community-events-395970d27cd7ab81a91f52f5fa3c9279','1502940401','no'),(9419,'_site_transient_community-events-395970d27cd7ab81a91f52f5fa3c9279','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"172.252.126.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:35:\"Writing your first WordPress Plugin\";s:3:\"url\";s:65:\"https://www.meetup.com/Wordpress-for-developers/events/241928952/\";s:6:\"meetup\";s:24:\"WordPress for Developers\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Wordpress-for-developers/\";s:4:\"date\";s:19:\"2017-08-19 13:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Redwood Shores, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.53025000000000233058017329312860965728759765625;s:9:\"longitude\";d:-122.258319999999997662598616443574428558349609375;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:34:\"How to become a WordPress Business\";s:3:\"url\";s:59:\"https://www.meetup.com/WordPress-Monterey/events/242356961/\";s:6:\"meetup\";s:18:\"WordPress Monterey\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/WordPress-Monterey/\";s:4:\"date\";s:19:\"2017-08-22 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Monterey, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:36.58544200000000046202330850064754486083984375;s:9:\"longitude\";d:-121.852631000000002359229256398975849151611328125;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:62:\"New Date: 8/27/2017! East Bay WordPress Meetup Contributor Day\";s:3:\"url\";s:65:\"https://www.meetup.com/Eastbay-WordPress-Meetup/events/237830311/\";s:6:\"meetup\";s:35:\"The East Bay WordPress Meetup Group\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/Eastbay-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-08-27 11:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Oakland, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.8084530000000000882209860719740390777587890625;s:9:\"longitude\";d:-122.265929999999997335180523805320262908935546875;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:26:\"Moving to HTTPS It\'s Time!\";s:3:\"url\";s:72:\"https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/241763971/\";s:6:\"meetup\";s:34:\"WordPress Bay Area Foothills Group\";s:10:\"meetup_url\";s:55:\"https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/\";s:4:\"date\";s:19:\"2017-08-30 13:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Milpitas, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.43281300000000300087776849977672100067138671875;s:9:\"longitude\";d:-121.907094999999998208295437507331371307373046875;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:27:\"WordPress Q&A and Topic TBD\";s:3:\"url\";s:50:\"https://www.meetup.com/sanjosewp/events/240230974/\";s:6:\"meetup\";s:29:\"The San Jose WordPress Meetup\";s:10:\"meetup_url\";s:33:\"https://www.meetup.com/sanjosewp/\";s:4:\"date\";s:19:\"2017-09-04 17:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"San Jose, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:37.24419400000000024419932742603123188018798828125;s:9:\"longitude\";d:-121.8893130000000013524186215363442897796630859375;}}}}','no'),(9438,'_transient_timeout_epc_purged_3237d8a4796a960b072a1b13796343a8','1502927558','no'),(9439,'_transient_epc_purged_3237d8a4796a960b072a1b13796343a8','1502927498','no'),(9534,'_transient_timeout_epc_purged_26b596789449e8117fe16a0bf1abd05f','1503020486','no'),(9535,'_transient_epc_purged_26b596789449e8117fe16a0bf1abd05f','1503020426','no'),(9581,'_site_transient_timeout_browser_18bbabd74bc72dd196c8970ea7a02742','1503695346','no'),(9582,'_site_transient_browser_18bbabd74bc72dd196c8970ea7a02742','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"59.0.3071.115\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(9588,'_transient_timeout_epc_purged_c2af02233dc31333ec3adbd9f1cd4faa','1503116435','no'),(9589,'_transient_epc_purged_c2af02233dc31333ec3adbd9f1cd4faa','1503116375','no'),(9594,'_transient_timeout_epc_purged_897655a317375b0bc177e7af1f7c10ba','1503116435','no'),(9595,'_transient_epc_purged_897655a317375b0bc177e7af1f7c10ba','1503116375','no'),(9598,'_site_transient_timeout_browser_792023cda893a89c4cd363935f32b00a','1503721207','no'),(9599,'_site_transient_browser_792023cda893a89c4cd363935f32b00a','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.101\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(9633,'_transient_timeout_epc_purged_8f2a7b28653762ab842ae191583ba6be','1503312306','no'),(9634,'_transient_epc_purged_8f2a7b28653762ab842ae191583ba6be','1503312246','no'),(9637,'_site_transient_timeout_community-events-e3f80d98c7182d1c5796390865ff3cb4','1504129519','no'),(9638,'_site_transient_community-events-e3f80d98c7182d1c5796390865ff3cb4','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"27.124.49.0\";}s:6:\"events\";a:0:{}}','no'),(9659,'_transient_timeout_epc_purged_e4f0de352864e2196a88e1b34f086c46','1503312578','no'),(9660,'_transient_epc_purged_e4f0de352864e2196a88e1b34f086c46','1503312518','no'),(9665,'_transient_timeout_epc_purged_7a3f62a2eb9d589af4c237934e1c4e0f','1503312578','no'),(9666,'_transient_epc_purged_7a3f62a2eb9d589af4c237934e1c4e0f','1503312518','no'),(9740,'_transient_timeout_epc_purged_9854a5fc6cbcdfa6700c223f68497772','1503477587','no'),(9741,'_transient_epc_purged_9854a5fc6cbcdfa6700c223f68497772','1503477527','no'),(9746,'_transient_timeout_epc_purged_90a21fa62d1af19db14e5199839b78e1','1503477587','no'),(9747,'_transient_epc_purged_90a21fa62d1af19db14e5199839b78e1','1503477527','no'),(9782,'_transient_timeout_epc_purged_fd0c4029a90e4f0dccdb91db3576a60c','1503569723','no'),(9783,'_transient_epc_purged_fd0c4029a90e4f0dccdb91db3576a60c','1503569663','no'),(9835,'_transient_timeout_epc_purged_a1bee3a93dbcd444d8a37620b21738aa','1503679296','no'),(9836,'_transient_epc_purged_a1bee3a93dbcd444d8a37620b21738aa','1503679236','no'),(9837,'_transient_timeout_epc_purged_7bafb0023a93e5f044b63e67ce85b359','1503679296','no'),(9838,'_transient_epc_purged_7bafb0023a93e5f044b63e67ce85b359','1503679236','no'),(9849,'_transient_timeout_epc_purged_2fa9c01769dce90e096d95fac328c1c2','1503679318','no'),(9850,'_transient_epc_purged_2fa9c01769dce90e096d95fac328c1c2','1503679258','no'),(9851,'_transient_timeout_epc_purged_e05ac451d0242cd7d045c6409a0addae','1503679318','no'),(9852,'_transient_epc_purged_e05ac451d0242cd7d045c6409a0addae','1503679258','no'),(9891,'_transient_timeout_epc_purged_8a946dce0413dfee4d015d9ff425871c','1503819992','no'),(9892,'_transient_epc_purged_8a946dce0413dfee4d015d9ff425871c','1503819932','no'),(9909,'_transient_timeout_epc_purged_3cd43c63df423fbb29f6130c4095ed8f','1503820331','no'),(9910,'_transient_epc_purged_3cd43c63df423fbb29f6130c4095ed8f','1503820271','no'),(9915,'_transient_timeout_epc_purged_232919252ba16b28ebbad33554b30ae6','1503820371','no'),(9916,'_transient_epc_purged_232919252ba16b28ebbad33554b30ae6','1503820311','no'),(10019,'layout_category_children','a:0:{}','yes'),(10091,'_transient_timeout_epc_purged_fa9dc1726601c5ed0c3517c3b7b02037','1503924452','no'),(10092,'_transient_epc_purged_fa9dc1726601c5ed0c3517c3b7b02037','1503924392','no'),(10159,'_transient_timeout_epc_purged_4a1efc62e8732763c303a260566df2ef','1503925748','no'),(10160,'_transient_epc_purged_4a1efc62e8732763c303a260566df2ef','1503925688','no'),(10185,'_transient_timeout_epc_purged_f0cec7f1f1adc04627fa16d980a5ddde','1503926046','no'),(10186,'_transient_epc_purged_f0cec7f1f1adc04627fa16d980a5ddde','1503925986','no'),(10213,'_transient_timeout_epc_purged_574703155c0504ff4b5f6e529d9ac022','1503926465','no'),(10214,'_transient_epc_purged_574703155c0504ff4b5f6e529d9ac022','1503926405','no'),(10219,'_transient_timeout_epc_purged_e5c7f22bce7a3dc04b0a152ac38150a0','1503926465','no'),(10220,'_transient_epc_purged_e5c7f22bce7a3dc04b0a152ac38150a0','1503926405','no'),(10268,'_transient_timeout_epc_purged_7990888cb9343bddb9d7cd4e9b06cdd9','1503928322','no'),(10269,'_transient_epc_purged_7990888cb9343bddb9d7cd4e9b06cdd9','1503928262','no'),(10342,'_transient_timeout_epc_purged_97d91e727a225f5291f0ed0990c75b87','1503930537','no'),(10343,'_transient_epc_purged_97d91e727a225f5291f0ed0990c75b87','1503930477','no'),(10354,'_transient_timeout_epc_purged_08f152ba02706076001164cdb1b066ff','1503930896','no'),(10355,'_transient_epc_purged_08f152ba02706076001164cdb1b066ff','1503930836','no'),(10373,'_transient_timeout_epc_purged_7b26f2f483828fcd56b7d1def7eb4e78','1503932204','no'),(10374,'_transient_epc_purged_7b26f2f483828fcd56b7d1def7eb4e78','1503932144','no'),(10407,'_transient_timeout_epc_purged_92da1b791cdc8e938ca4711bbc12fa5b','1503932756','no'),(10408,'_transient_epc_purged_92da1b791cdc8e938ca4711bbc12fa5b','1503932696','no'),(10416,'_transient_timeout_epc_purged_3c12a0b45a86e36ce520d857d06b2b21','1503937693','no'),(10417,'_transient_epc_purged_3c12a0b45a86e36ce520d857d06b2b21','1503937633','no'),(10424,'_transient_timeout_epc_purged_2c9b70f54f0dadd3ff1c6fe9ea4eed37','1503937718','no'),(10425,'_transient_epc_purged_2c9b70f54f0dadd3ff1c6fe9ea4eed37','1503937658','no'),(10458,'_transient_timeout_epc_purged_53e8aa78a1e02f0e2c9abd5a34dbbb65','1503937825','no'),(10459,'_transient_epc_purged_53e8aa78a1e02f0e2c9abd5a34dbbb65','1503937765','no'),(10460,'_transient_timeout_epc_purged_887fc0dd29840b73e2155d8e70274b97','1503937837','no'),(10461,'_transient_epc_purged_887fc0dd29840b73e2155d8e70274b97','1503937777','no'),(10482,'_transient_timeout_epc_purged_0dde51c45ec6fb2459ce3e8b3dabcc51','1503938073','no'),(10483,'_transient_epc_purged_0dde51c45ec6fb2459ce3e8b3dabcc51','1503938013','no'),(10516,'_transient_timeout_epc_purged_841f3ae4e2ebe71ab6529755ed6e7e69','1503938447','no'),(10517,'_transient_epc_purged_841f3ae4e2ebe71ab6529755ed6e7e69','1503938387','no'),(10522,'_transient_timeout_epc_purged_0e053aff6e9a5e30dd44edc5ec87d527','1503938447','no'),(10523,'_transient_epc_purged_0e053aff6e9a5e30dd44edc5ec87d527','1503938387','no'),(10538,'_transient_timeout_epc_purged_c29c43379d5dace302f3a2e03ecc4dac','1503939326','no'),(10539,'_transient_epc_purged_c29c43379d5dace302f3a2e03ecc4dac','1503939266','no'),(10554,'_transient_timeout_epc_purged_041ef8b7d560bd127c51ace9feab2be1','1503939934','no'),(10555,'_transient_epc_purged_041ef8b7d560bd127c51ace9feab2be1','1503939874','no'),(10560,'_transient_timeout_epc_purged_0357a09ff7383fe8c6e3e2799de9d931','1503939992','no'),(10561,'_transient_epc_purged_0357a09ff7383fe8c6e3e2799de9d931','1503939932','no'),(10562,'_transient_timeout_epc_purged_79b5e12f44ab72f1d9583b8905868e66','1503940040','no'),(10563,'_transient_epc_purged_79b5e12f44ab72f1d9583b8905868e66','1503939980','no'),(10574,'_site_transient_timeout_browser_7b54248f31d5ea275e3994eda9dbbe2b','1504614717','no'),(10575,'_site_transient_browser_7b54248f31d5ea275e3994eda9dbbe2b','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.101\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10578,'_transient_timeout_epc_purged_9c185e13975b2a7a20e4b261cfe6a370','1504009996','no'),(10579,'_transient_epc_purged_9c185e13975b2a7a20e4b261cfe6a370','1504009936','no'),(10586,'_transient_timeout_epc_purged_89a84b75d0afd4f29dd8136c5d2c5e88','1504010026','no'),(10587,'_transient_epc_purged_89a84b75d0afd4f29dd8136c5d2c5e88','1504009966','no'),(10591,'_transient_timeout_epc_purged_bf4555659c277e015768ef25492ea102','1504010089','no'),(10592,'_transient_epc_purged_bf4555659c277e015768ef25492ea102','1504010029','no'),(10597,'_transient_timeout_epc_purged_5338cf12b70754651fc2314135a0d612','1504010089','no'),(10598,'_transient_epc_purged_5338cf12b70754651fc2314135a0d612','1504010029','no'),(10599,'_transient_timeout_epc_purged_010724f7c7cd920cf52d72f88ef86221','1504010089','no'),(10600,'_transient_epc_purged_010724f7c7cd920cf52d72f88ef86221','1504010029','no'),(10602,'_transient_timeout_epc_purged_a78ce94dcb7168355138b266a943dcf7','1504010089','no'),(10603,'_transient_epc_purged_a78ce94dcb7168355138b266a943dcf7','1504010029','no'),(10604,'_transient_timeout_epc_purged_f7a73afa7ada231964dd8b2a230ef733','1504010089','no'),(10605,'_transient_epc_purged_f7a73afa7ada231964dd8b2a230ef733','1504010029','no'),(10606,'_transient_timeout_epc_purged_84f0781a4ff39c319ec746146db36015','1504010089','no'),(10607,'_transient_epc_purged_84f0781a4ff39c319ec746146db36015','1504010029','no'),(10608,'_transient_timeout_epc_purged_035a9d2671e5af2430578fabacb85ae7','1504010089','no'),(10609,'_transient_epc_purged_035a9d2671e5af2430578fabacb85ae7','1504010029','no'),(10610,'_transient_timeout_epc_purged_c62a9e20a19686c175792d481631afcd','1504010089','no'),(10611,'_transient_epc_purged_c62a9e20a19686c175792d481631afcd','1504010029','no'),(10612,'_transient_timeout_epc_purged_7857e65e4a7b262651b62f0acf03f541','1504010089','no'),(10613,'_transient_epc_purged_7857e65e4a7b262651b62f0acf03f541','1504010029','no'),(10614,'_transient_timeout_epc_purged_cc1be708f757a0ba91f6fc91fe6d11e0','1504010089','no'),(10615,'_transient_epc_purged_cc1be708f757a0ba91f6fc91fe6d11e0','1504010029','no'),(10616,'_transient_timeout_epc_purged_0284b162fd0af4f151448e059d49cdb2','1504010089','no'),(10617,'_transient_epc_purged_0284b162fd0af4f151448e059d49cdb2','1504010029','no'),(10618,'_transient_timeout_epc_purged_8f741f4b9fe57043c109dfa9326abf0a','1504010089','no'),(10619,'_transient_epc_purged_8f741f4b9fe57043c109dfa9326abf0a','1504010029','no'),(10620,'_transient_timeout_epc_purged_9dfd48db7e18c3df913a6f08c0c62a90','1504010089','no'),(10621,'_transient_epc_purged_9dfd48db7e18c3df913a6f08c0c62a90','1504010029','no'),(10624,'_transient_timeout_epc_purged_4e541aae4a87677d7e460a4521ef53a4','1504010259','no'),(10625,'_transient_epc_purged_4e541aae4a87677d7e460a4521ef53a4','1504010199','no'),(10630,'_transient_timeout_epc_purged_306e785f8da9bb6ed1b55fdc2340cd8d','1504010259','no'),(10631,'_transient_epc_purged_306e785f8da9bb6ed1b55fdc2340cd8d','1504010199','no'),(10634,'_transient_timeout_epc_purged_a0f4f15785ed56b47ccbe0e20d6a9dd2','1504010453','no'),(10635,'_transient_epc_purged_a0f4f15785ed56b47ccbe0e20d6a9dd2','1504010393','no'),(10638,'_transient_timeout_epc_purged_614c179bccba31397084893ee8a351b9','1504010453','no'),(10639,'_transient_epc_purged_614c179bccba31397084893ee8a351b9','1504010393','no'),(10644,'_site_transient_timeout_browser_a2dc6bc5b9e28f4b2b5c65dacc393a42','1504621151','no'),(10645,'_site_transient_browser_a2dc6bc5b9e28f4b2b5c65dacc393a42','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"10.1.1\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10651,'_transient_timeout_epc_purged_2c32b6f7b1258fff637ace7f9524a8ae','1504040370','no'),(10652,'_transient_epc_purged_2c32b6f7b1258fff637ace7f9524a8ae','1504040310','no'),(10657,'_transient_timeout_epc_purged_243bc9a919e02d5ecc5f6a34d4f141e1','1504040370','no'),(10658,'_transient_epc_purged_243bc9a919e02d5ecc5f6a34d4f141e1','1504040310','no'),(10661,'_transient_timeout_epc_purged_197c58563e03709cbd5f3566ae42bfad','1504040370','no'),(10662,'_transient_epc_purged_197c58563e03709cbd5f3566ae42bfad','1504040310','no'),(10684,'_site_transient_timeout_browser_766879847fa5d10fcaa1aa9bbbb81ef1','1504691112','no'),(10685,'_site_transient_browser_766879847fa5d10fcaa1aa9bbbb81ef1','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"55.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10686,'_transient_timeout_epc_purged_9f7db26505d2bdde85af26b3112288ca','1504086372','no'),(10687,'_transient_epc_purged_9f7db26505d2bdde85af26b3112288ca','1504086312','no'),(10692,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1504129520','no'),(10693,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Aug 2017 12:09:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=4.9-alpha-41321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.8.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 21:26:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4875\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release. This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Weston Ruter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2560:\"<p>After over 13 million downloads of WordPress 4.8, we are pleased to announce the immediate availability of WordPress 4.8.1, a maintenance release.</p>\n<p>This release contains 29 maintenance fixes and enhancements, chief among them are fixes to the rich Text widget and the introduction of the Custom HTML widget. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.8.1\">release notes</a>, the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.8.1&amp;group=component\">tickets closed</a>, and the <a href=\"https://core.trac.wordpress.org/log/branches/4.8?rev=41210&amp;stop_rev=40891\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.1</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.1.</p>\n<p>Thanks to everyone who contributed to 4.8.1:<br />\n<a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev/\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/greuben/\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/sa3idho/\">Said El Bakkali</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/08/the-month-in-wordpress-july-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2017 07:50:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4885\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"After a particularly busy month in June, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July. Weekly meeting for new core [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5644:\"<p>After a particularly busy month <a href=\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\">in June</a>, things settled down a bit in the WordPress world — WordPress 4.8’s release went very smoothly, allowing the Core team to build up some of the community infrastructure around development. Read on for more interesting news from around the WordPress world in July.</p>\n<hr />\n<h2>Weekly meeting for new core contributors</h2>\n<p>Onboarding new contributors is a persistent issue for most WordPress contribution teams. While every team welcomes any new contributors, the path to getting deeply involved can be tricky to find at times.</p>\n<p>This month, the Core team implemented a fantastic new initiative: <a href=\"https://make.wordpress.org/core/2017/06/30/announcing-a-weekly-new-contributors-meeting/\">weekly meetings for new core contributors</a> as a way to encourage involvement and foster fresh contributions. The meetings not only focus on bugs suited to first-time contributors, they also make space for experienced contributors to help out individuals who may be new to developing WordPress core.</p>\n<p>The meetings are held every Wednesday at 19:00 UTC in the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>Increased focus on PHP practices in WordPress core</h2>\n<p>In bringing people together to improve WordPress core, a new channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> named #core-php is designed to focus on PHP development in the project.</p>\n<p>Along with this increased concentration on PHP, a <a href=\"https://make.wordpress.org/core/2017/07/06/announcement-for-weekly-php-meetings/\">new weekly meeting is now taking place</a> every Monday at 18:00 UTC in #core-php to improve WordPress core’s PHP practices.</p>\n<h2>Sharp rise in meetup group growth</h2>\n<p>The dashboard events widget in WordPress 4.8 displays local, upcoming WordPress events for the logged in user. The events listed in this widget are pulled from the <a href=\"https://www.meetup.com/pro/wordpress/\">meetup chapter program</a>, as well as the <a href=\"https://central.wordcamp.org/schedule\">WordCamp schedule</a>.</p>\n<p>This widget provides greater visibility of official WordPress events, and encourages community involvement in these events. It’s safe to say that the widget has achieved its goals admirably — since WordPress 4.8 was released a little over a month ago, 31 new meetup groups have been formed with 15,647 new members across the whole program. This is compared to 19 new groups and only 7,071 new members in the same time period last year.</p>\n<p>You can find a local meetup group to join <a href=\"https://www.meetup.com/pro/wordpress/\">on meetup.com</a>, and if you would like to get involved in organizing events for your community, you can find out more about the inner workings of the program <a href=\"https://make.wordpress.org/community/meetups/\">on the Community Team site</a> or by joining the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n<h2>WordPress 4.8.1 due for imminent release</h2>\n<p>WordPress 4.8 cycle’s first maintenance release will be published in the coming week, more than a month after 4.8 was released. This release fix some important issues in WordPress core and the majority of users will find that their sites will update to this new version automatically.</p>\n<p>If you would like to help out by testing this release before it goes live, you can follow the <a href=\"https://make.wordpress.org/core/handbook/testing/beta/\">beta testing guide</a> for WordPress core. To get further involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li>The WordPress mobile apps have been updated with <a href=\"https://en.blog.wordpress.com/2017/07/24/a-brand-new-editor-for-the-wordpress-mobile-apps/\">a brand new text editor</a>.</li>\n<li>In a recent push to encourage WordPress users to upgrade their PHP versions, two features have been proposed &#8211; one <a href=\"https://core.trac.wordpress.org/ticket/41191\">to provide a notice to users</a> and another to <a href=\"https://core.trac.wordpress.org/ticket/40934\">allow PHP version requirements to be specified by plugins and themes</a>.</li>\n<li>John Maeda wrote <a href=\"https://make.wordpress.org/design/2017/07/14/whywordpress2/\">a great post</a> celebrating the freedom that WordPress offers.</li>\n<li>Gutenberg, the new text editor for WordPress, is <a href=\"https://make.wordpress.org/core/2017/07/28/whats-new-in-gutenberg-28th-july/\">in continual development</a> — everyone is invited to <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>.</li>\n<li>The WordPress Meta team is starting <a href=\"https://make.wordpress.org/meta/2017/07/26/experiment-wordcamp-org-bug-scrubs/\">a new initiative</a> to bring the community together to focus on fixing bugs across the WordCamp.org network.</li>\n<li>Volunteer applications for WordCamp US <a href=\"https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/\">are now open</a>.</li>\n</ul>\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4885\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: June 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/07/the-month-in-wordpress-june-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Jul 2017 11:42:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4865\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"We&#8217;re starting a new regular feature on this blog today. We&#8217;d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we&#8217;ll be posting a roundup of all the major WordPress news at the end of every month. Aside from other general [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9225:\"<p><i>We&#8217;re starting a new regular feature on this blog today. We&#8217;d like to keep everyone up-to-date about the happenings all across the WordPress open source project and highlight how you can get involved, so we&#8217;ll be posting a roundup of all the major WordPress news at the end of every month.</i></p>\n<p>Aside from other general news, the three big events in June were the release of WordPress 4.8, WordCamp Europe 2017, and the WordPress Community Summit. Read on to hear more about these as well as other interesting stories from around the WordPress world.</p>\n<hr />\n<h2>WordPress 4.8</h2>\n<p>On June 8, a week before the Community Summit and WordCamp Europe,<a href=\"https://wordpress.org/news/2017/06/evans/\"> WordPress 4.8 was released</a>.You can read<a href=\"https://make.wordpress.org/core/2017/05/26/wordpress-4-8-field-guide/\"> the Field Guide</a> for a comprehensive overview of all the features of this release (the News and Events widget in the dashboard is one of the major highlights).</p>\n<p>Most people would either have their version auto-updated, or their hosts would have updated it for them. For the rest, the updates have gone smoothly with no major issues reported so far.</p>\n<p>This WordPress release saw contributions from 346 individuals; you can find their names in <a href=\"https://wordpress.org/news/2017/06/evans/\">the announcement post</a>. To get involved in building WordPress core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n<h2>WordCamp Europe 2017</h2>\n<p><a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe 2017</a> was held in Paris between June 15-17. The event began with a Contributor Day, followed by two days of talks and community goodness. The talks were live-streamed, but you can still catch all the recordings <a href=\"http://wordpress.tv/event/wordcamp-europe-2017/\">on WordPress.tv</a>. The organisers also published <a href=\"https://2017.europe.wordcamp.org/2017/06/30/wordcamp-europe-2017-in-paris-its-a-wrap/\">a handy wrap-up of the event</a>.</p>\n<p>WordCamp Europe exists to bring together the WordPress community from all over the continent, as well as to inspire local communities everywhere to get their own events going — to that end, the event was a great success, as a host of new meetup groups have popped up in the weeks following WordCamp Europe.</p>\n<p>The work that Contributor Day participants accomplished was both varied and valuable, covering all aspects of the WordPress project — have a look through <a href=\"https://make.wordpress.org/\">the Make blogs</a> for updates from each team.</p>\n<p>Finally, we also learned during the event that <a href=\"https://2017.europe.wordcamp.org/2017/06/17/belgrade-serbia-to-host-wordcamp-europe-2018/\">WordCamp Europe 2018 will be held in Belgrade, Serbia</a>, continuing the tradition of exploring locations and communities across the continent.</p>\n<h2>WordPress Community Summit</h2>\n<p>The fourth WordPress Community Summit took place during the two days leading up to WordCamp Europe 2017. This event is an invite-only unconference where people from all over the WordPress community come together to discuss some of the more difficult issues in the community, as well as to make plans for the year ahead in each of the contribution teams.</p>\n<p>As the Summit is designed to be a safe space for all attendees, the notes from each discussion are in the process of being anonymized before we publish them on <a href=\"https://make.wordpress.org/summit/\">the Summit blog</a> (so stay tuned &#8211; they’ll show up there over the next few weeks).</p>\n<p>You can already see the final list of topics that were proposed for the event <a href=\"https://make.wordpress.org/summit/2017/06/10/community-summit-2017-final-list-of-topic/\">here</a> (although a few more were added during the course of the two day Summit).</p>\n<h2>WordPress marketing push continues apace</h2>\n<p>As part of the push to be more intentional in marketing WordPress (as per Matt Mullenweg&#8217;s <a href=\"http://wordpress.tv/2016/12/07/matt-mullenweg-state-of-the-word-2016/\">2016 State of the Word</a>), the Marketing team has launched two significant drives to obtain more information about who uses WordPress and how that information can shape their outreach and messaging efforts.</p>\n<p><a href=\"https://make.wordpress.org/marketing/2017/06/15/wordpress-case-studies-and-usage-survey/\">The team is looking for WordPress case studies</a> and is asking users, agencies, and freelancers to take a WordPress usage survey. This will go a long way towards establishing a marketing base for WordPress as a platform and as a community — and many people in the community are looking forward to seeing this area develop further.</p>\n<p>To get involved in the WordPress Marketing team, you can visit <a href=\"https://make.wordpress.org/marketing/\">their team blog</a>.</p>\n<h2>New Gutenberg editor available for testing</h2>\n<p>For some time now, the Core team has been hard at work on a brand-new text editor for WordPress — this project has been dubbed “Gutenberg.” The project’s ultimate goal is to replace the existing TinyMCE editor, but for now it is in beta and available for public testing — <a href=\"https://wordpress.org/plugins/gutenberg/\">you can download it here as a plugin</a> and install it on any WordPress site.</p>\n<p>This feature is still in beta, so we don’t recommend using it on a production site. If you test it out, though, you’ll find that it is a wholly different experience to what you are used to in WordPress. It’s a more streamlined, altogether cleaner approach to the text-editing experience than we’ve had before, and something that many people are understandably excited about. Matt Mullenweg discussed the purpose of Gutenberg in more detail during <a href=\"http://wordpress.tv/2017/07/01/interview-and-qanda-with-matt-mullenweg/\">his Q&amp;A at WordCamp Europe</a>.</p>\n<p>There are already a few reviews out from <a href=\"https://kinsta.com/blog/gutenberg-wordpress-editor/\">Brian Jackson at Kinsta</a>, <a href=\"https://daily.jorb.in/2017/06/random-thoughts-on-gutenberg/\">Aaron Jorbin</a>, and <a href=\"https://www.mattcromwell.com/gutenberg-first-impressions/\">Matt Cromwell</a> (among many others). Keep in mind that the project is in constant evolution at this stage; when it eventually lands in WordPress core (probably in v5.0), it could look very different from its current iteration — that’s what makes this beta stage and user testing so important.</p>\n<p>To get involved with shaping the future of Gutenberg, please <a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">test it out</a>, and join the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>. You can also visit <a href=\"https://github.com/WordPress/gutenberg\">the project’s GitHub repository</a> to report issues and contribute to the codebase.</p>\n<hr />\n<h2>Further reading:</h2>\n<ul>\n<li style=\"font-weight: 400\">Bridget Willard <a href=\"https://make.wordpress.org/community/2017/06/21/proposed-wordcamp-editorial-calendar/\">has proposed an editorial calendar</a> to assist WordCamp organizers with publishing content for their event.</li>\n<li style=\"font-weight: 400\">A new kind of niche WordCamp, <a href=\"https://2017-denver.journalist.wordcamp.org/\">WordCamp for Publishers in Denver</a>, has opened ticket sales.</li>\n<li style=\"font-weight: 400\">The WordPress iOS app was updated with <a href=\"https://en.blog.wordpress.com/2017/06/21/an-all-new-media-library-for-the-wordpress-ios-app/\">a fresh, new media library</a> this month.</li>\n<li style=\"font-weight: 400\">It looks like <i>Underscores</i>, the popular WordPress starter theme, <a href=\"https://themeshaper.com/2017/06/26/the-future-of-underscores-and-a-new-committer/\">has a bright future ahead of it</a>, with a renewed vision and new committer.</li>\n<li style=\"font-weight: 400\">The always-inspiring Tom McFarlin <a href=\"https://tommcfarlin.com/simple-autoloader-for-wordpress\">has released a simple autoloader for WordPress</a> that looks very useful indeed.</li>\n<li style=\"font-weight: 400\">After a bit of a discussion on Twitter regarding the differences between WordPress.org, WordPress.com, and Jetpack, <a href=\"https://helen.wordpress.com/2017/06/21/restaurant-vs-meal-kit-vs-grocery-shopping-or-wordpress-com-vs-jetpack-vs-wordpress-org/\">Helen Hou-Sandí came up with a great analogy</a> and an interesting post about it all.</li>\n<li style=\"font-weight: 400\">If you’re interested in contributing specifically to the JavaScript or PHP areas of the WordPress core codebase, then the new #core-js and #core-php channels in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> are perfect for you.</li>\n</ul>\n<p><i>If you have a story we should consider including in the next “Month in WordPress” post, please </i><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><i>submit it here</i></a><i>.</i></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 4.8 “Evans”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2017/06/evans/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Jun 2017 14:49:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4770\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"An Update with You in Mind Gear up for a more intuitive WordPress! Version 4.8 of WordPress, named &#8220;Evans&#8221; in honor of jazz pianist and composer William John &#8220;Bill&#8221; Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand. Though some [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:43005:\"<h2 style=\"text-align: center\">An Update with You in Mind</h2>\n<p><img class=\"aligncenter size-large wp-image-4816\" src=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=632%2C316&#038;ssl=1\" alt=\"\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2017/06/release-featured-image.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Gear up for a more intuitive WordPress!</h3>\n<p>Version 4.8 of WordPress, named &#8220;Evans&#8221; in honor of jazz pianist and composer William John &#8220;Bill&#8221; Evans, is available for download or update in your WordPress dashboard. New features in 4.8 add more ways for you to express yourself and represent your brand.</p>\n<p>Though some updates seem minor, they’ve been built by hundreds of contributors with <em>you</em> in mind. Get ready for new features you’ll welcome like an old friend: link improvements, <em>three</em> new media widgets covering images, audio, and video, an updated text widget that supports visual editing, and an upgraded news section in your dashboard which brings in nearby and upcoming WordPress events.</p>\n<hr />\n<h2 style=\"text-align: center\">Exciting Widget Updates</h2>\n<p><img class=\"size-large wp-image-4776 aligncenter\" src=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=632%2C436&#038;ssl=1\" alt=\"\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=1024%2C706&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=300%2C207&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?resize=768%2C530&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2017/06/widgets-with-all-four.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<h3>Image Widget</h3>\n<p>Adding an image to a widget is now a simple task that is achievable for any WordPress user without needing to know code. Simply insert your image right within the widget settings. Try adding something like a headshot or a photo of your latest weekend adventure — and see it appear automatically.</p>\n<h3>Video Widget</h3>\n<p>A welcome video is a great way to humanize the branding of your website. You can now add any video from the Media Library to a sidebar on your site with the new Video widget. Use this to showcase a welcome video to introduce visitors to your site or promote your latest and greatest content.</p>\n<h3>Audio Widget</h3>\n<p>Are you a podcaster, musician, or avid blogger? Adding a widget with your audio file has never been easier. Upload your audio file to the Media Library, go to the widget settings, select your file, and you’re ready for listeners. This would be a easy way to add a more personal welcome message, too!</p>\n<h3>Rich Text Widget</h3>\n<p>This feature deserves a parade down the center of town! Rich-text editing capabilities are now native for Text widgets. Add a widget anywhere and format away. Create lists, add emphasis, and quickly and easily insert links. Have fun with your newfound formatting powers, and watch what you can accomplish in a short amount of time.</p>\n<hr />\n<h2 style=\"text-align: center\">Link Boundaries</h2>\n<div id=\"v-8BDWH3QG-1\" class=\"video-player\"><video id=\"v-8BDWH3QG-1-video\" width=\"632\" height=\"342\" poster=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.mp4\" type=\"video/mp4; codecs=&quot;avc1.64001E, mp4a.40.2&quot;\" /><source src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_fmt1.ogv\" type=\"video/ogg; codecs=&quot;theora, vorbis&quot;\" /><div><img alt=\"Link Boundaries\" src=\"https://videos.files.wordpress.com/8BDWH3QG/3-link-boundaries_dvd.original.jpg?resize=632%2C342\" data-recalc-dims=\"1\" /></div><p>Link Boundaries</p></video></div>\n<p>Have you ever tried updating a link, or the text around a link, and found you can&#8217;t seem to edit it correctly? When you edit the text after the link, your new text also ends up linked. Or you edit the text in the link, but your text ends up outside of it. This can be frustrating! With link boundaries, a great new feature, the process is streamlined and your links will work well. You’ll be happier. We promise.</p>\n<hr />\n<h2 style=\"text-align: center\">Nearby WordPress Events</h2>\n<p><img class=\"aligncenter wp-image-4779 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=632%2C465&#038;ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=1024%2C753&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=300%2C221&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?resize=768%2C565&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2017/06/events-widget.png?w=1126&amp;ssl=1 1126w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Did you know that WordPress has a thriving offline community with groups meeting regularly in more than 400 cities around the world? WordPress now draws your attention to the events that help you continue improving your WordPress skills, meet friends, and, of course, publish!</p>\n<p>This is quickly becoming one of our favorite features. While you are in the dashboard (because you’re running updates and writing posts, right?) all upcoming WordCamps and official WordPress Meetups — local to you — will be displayed.</p>\n<p>Being part of the community can help you improve your WordPress skills and network with people you wouldn&#8217;t otherwise meet. Now you can easily find your local events just by logging in to your dashboard and looking at the new Events and News dashboard widget.</p>\n<hr />\n<h2 style=\"text-align: center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/17/cleaner-headings-in-the-admin-screens/\">More Accessible Admin Panel Headings</a></h3>\n<p>New CSS rules mean extraneous content (like “Add New” links) no longer need to be included in admin-area headings. These panel headings improve the experience for people using assistive technologies.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/removal-of-core-embedding-support-for-wmv-and-wma-file-formats/\">Removal of Core Support for WMV and WMA Files</a></h3>\n<p>As fewer and fewer browsers support Silverlight, file formats which require the presence of the Silverlight plugin are being removed from core support. Files will still display as a download link, but will no longer be embedded automatically.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/22/multisite-focused-changes-in-4-8/\">Multisite Updates</a></h3>\n<p>New capabilities have been introduced to 4.8 with an eye towards removing calls to<br />\n<code>is_super_admin()</code>. Additionally, new hooks and tweaks to more granularly control site and user counts per network have been added.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/23/addition-of-tinymce-to-the-text-widget/\">Text-Editor JavaScript API</a></h3>\n<p>With the addition of TinyMCE to the text widget in 4.8 comes a new JavaScript API for instantiating the editor after page load. This can be used to add an editor instance to any text area, and customize it with buttons and functions. Great for plugin authors!</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/26/media-widgets-for-images-video-and-audio/\">Media Widgets API</a></h3>\n<p>The introduction of a new base media widget REST API schema to 4.8 opens up possibilities for even more media widgets (like galleries or playlists) in the future. The three new media widgets are powered by a shared base class that covers most of the interactions with the media modal. That class also makes it easier to create new media widgets and paves the way for more to come.</p>\n<h3><a href=\"https://make.wordpress.org/core/2017/05/16/customizer-sidebar-width-is-now-variable/\">Customizer Width Variable</a></h3>\n<p>Rejoice! New responsive breakpoints have been added to the customizer sidebar to make it wider on high-resolution screens. Customizer controls should use percentage-based widths instead of pixels.</p>\n<hr />\n<h2 style=\"text-align: center\">The Squad</h2>\n<p>This release was led by <a href=\"https://matt.blog\">Matt</a> and <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, with the help of the following fabulous folks. There are 346 contributors with props in this release, with 106 of them contributing for the first time. Pull up some Bill Evans on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/quasel\">Bernhard Gronau</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">Dipesh Kakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Francesco Taurino</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran &#352;erić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt PeepSo</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Ara&#250;jo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/zuige\">Viljami Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p>&nbsp;</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.8. Their efforts bring WordPress 4.8 fully translated to 38 languages at release time with more on the way.</p>\n<p>Do you want to report on WordPress 4.8? <a href=\"https://s.w.org/images/core/4.8/wp-4-8_press-kit.zip\">We&#8217;ve compiled a press kit</a> featuring information about the release features, and some media assets to help you along.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress — we hope you enjoy!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.8 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2017/06/wordpress-4-8-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jun 2017 22:13:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4765\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:336:\"The second release candidate for WordPress 4.8 is now available. To test WordPress 4.8, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip). We&#8217;ve made a handful of changes since releasing RC 1 last week. For more details about what&#8217;s new in version 4.8, check out the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1173:\"<p>The second release candidate for WordPress 4.8 is now available.</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=40866&amp;stop_rev=40847\">a handful of changes</a> since releasing RC 1 last week. For more details about what&#8217;s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/\">RC1</a> blog posts.</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you&#8217;ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>Happy testing!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4765\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.8 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2017/05/wordpress-4-8-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 May 2017 23:04:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4758\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"The release candidate for WordPress 4.8 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on Thursday, June 8, but we need your help to get there. If you haven’t tested 4.8 yet, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2365:\"<p>The release candidate for WordPress 4.8 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.8 on <strong>Thursday, June 8</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.8 yet, now is the time!</p>\n<p>To test WordPress 4.8, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.8-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>We&#8217;ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=40840&amp;stop_rev=40821\">a handful of changes</a> since releasing Beta 2 earlier this week. For more details about what’s new in version 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\">Beta 2</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.8 and update your plugin’s <em>Tested up to</em> version in the readme to 4.8. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>This release&#8217;s haiku is courtesy of <a href=\'https://profiles.wordpress.org/matveb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matveb</a>:</p>\n<p><em>Érrese uno</em><br />\n<em>Cien veces y más</em><br />\n<em>Erre ce dos</em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4758\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.8 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 May 2017 00:02:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4749\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"WordPress 4.8 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.8, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1621:\"<p>WordPress 4.8 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.8, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.8-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.8, check out the <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">Beta 1</a> blog post. Since then, we’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=40819&amp;stop_rev=40664&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">over 50 changes</a> in Beta 2.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>WordPress four point eight<br />\nOne step closer to release<br />\nPlease test Beta 2!</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4749\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.5 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 22:39:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4734\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"WordPress 4.7.5 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2349:\"<p>WordPress 4.7.5 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CSRF)  vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=4.7.5&amp;group=component&amp;col=id&amp;col=summary&amp;col=component&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=keywords&amp;order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4734\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress Now on HackerOne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 May 2017 16:02:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4730\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:322:\"WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that WordPress is now officially [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1715:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We&#8217;ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.8 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 May 2017 00:15:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4727\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"We&#8217;re planning a smaller WP release early next month, bringing in three major enhancements: An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it&#8217;s hard to describe.) A revamp of the dashboard news widget to [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1148:\"<p>We&#8217;re planning a smaller WP release early next month, bringing in three major enhancements:</p>\n<ul>\n<li>An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it&#8217;s hard to describe.)</li>\n<li>A revamp of the dashboard news widget to bring in nearby and upcoming events including meetups and WordCamps.</li>\n<li>Several new media widgets covering images, audio, and video, and an enhancement to the text widget to support visual editing.</li>\n</ul>\n<p>The first beta of 4.8 is now available for testing. You can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> (or just run trunk) to try the latest and greatest, and each of these areas could use a ton of testing. Our goals are to make editing posts with links more intuitive, make widgets easier for new users and more convenient for existing ones, and get many more people aware of and attending our community events.</p>\n<p><em>Four point eight is here<br />\nSmall changes with a big punch<br />\nBig ones come later</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4727\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 30 Aug 2017 09:45:20 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 21 Aug 2017 12:09:06 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20170518170751\";}','no'),(10694,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1504129520','no'),(10695,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1504086320','no'),(10696,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1504129521','no'),(10697,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"HeroPress: Retiring Young in Bangladesh, Thanks To WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2064\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:158:\"https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=retiring-young-bangladesh-thanks-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55765:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/083017-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: You can\'t always win. You have to learn from the journey and move on.\" /><p><span>When you are reading this, I am probably just celebrating my 33rd Birthday. I don’t know how this number 33 sounds to you, but in some ways, I feel it’s a huge number. I know many of you would argue that 33 is not an age to be considered old. In this article I will share my career with WordPress lasting over 13 years, and how I am planning to retire within a year, more or less. And if you are an Entrepreneur yourself or self-establisher person, I think this will be an intriguing discussion, I will add some key pointer of life what lead me to this decision.</span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/edit_IMG_1358.jpg\"><img class=\"aligncenter size-large wp-image-2067\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/edit_IMG_1358-1024x819.jpg\" alt=\"\" width=\"960\" height=\"768\" /></a></p>\n<h3><b>What do I mean by &#8216;retire&#8217;?</b></h3>\n<p><span>So, may be you are shocked to just see the title. The word ‘retire’ could be little confusing. Does that mean I am going to take leave from all of my ventures permanently? Will not be involved with anything day to day basis. And will be walking out in my beach-shorts in broad daylight, or vacationing endlessly anywhere in the world? </span></p>\n<p><span>In some sense, Yes, in some sense, No. The kind of office I have I could literally go in shorts though, and my life has given m the opportunity to vacation as I want, almost!</span></p>\n<p><span>But, yes, I am talking about taking leave from most of my ventures, at least not being involved day to day. And kind of taking break to reflect more into life. I have been working tirelessly for a decade. I need some kind of break, it&#8217;s not exactly what you think though. It’s kind of reboot. I will keep expanding the idea throughout the article.</span></p>\n<h2><b>So, who am I?</b></h2>\n<p><span>I am not sure how boring this might get, but still, let me introduce myself. My name is Asif, I am the CEO of weDevs, a large WordPress product company (in WordPress Ecosystem) with a team of over 45 people. I am also the Founder of ARCom, a decade old WordPress focused Media Company. I am involved with WordPress community since 2004 and been very actively involved ever since. </span></p>\n<p><span>I have founded many startups in my Entrepreneurial career, including but not limited to (those are the successful one, but I obviously have fair share of failures as well)</span></p>\n<p><b>The Tech Journal</b><span> &#8211; A Tech Magazine with a peak monthly user base of 10.2 Million.</span></p>\n<p><b>The Dhaka Times</b><span> &#8211; A Lifestyle Magazine in Bangla language (</span> <a href=\"https://en.wikipedia.org/wiki/List_of_languages_by_number_of_native_speakers\"><span>seventh most spoken native language in the world</span></a><span> by population) with average monthly 15-35 Million user base.</span></p>\n<p><b>WPDeveloper.net</b><span> &#8211; A (half-baked) WordPress Product Marketplace, focused to solve simple problems in WordPress, connecting User with Developer.</span></p>\n<p><b>Analytify &#8211; </b><span>A very advanced and highlighted WordPress Plugin that makes Google Analytics easy inside WordPress, and helps ecommerce brands.</span></p>\n<p><span>I am also involved heavily in either as Founder or Investor, or many weird capacities at</span></p>\n<p><b>Geeky Social</b><span> &#8211; A progressive digital agency in Bangladesh, focused on Knowledge Leadership! </span></p>\n<p><b>AamarPay</b><span> &#8211; A Payment Processor</span></p>\n<p><b>Alo Venture</b><span> &#8211; Once very active, now semi-dead venture capital wing, invested mainly in mobile and game industry.</span></p>\n<p><span>And ARCom is always rocking with several projects, for past few year we have a wing to handle Enterprise WordPress Support, and serving even Fortune 500 company, who rely on us entirely, and we manage their entire stack, month by month, for years.</span></p>\n<h2><b>Enough of me!</b></h2>\n<p><span>Is it? As this article is entirely about me, you have to tolerate a lot more. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /></span></p>\n<p><span>This is going to be the biggest ever article published in HeroPress!</span></p>\n<p><b>So, I always wanted to do WordPress?</b></p>\n<p><span>No, obviously not. In my childhood I always wanted to be a scientist, a Physicist to be exact. And it&#8217;s not just like an aim-in-life, I was literally very serious. I was always into Space Science. Later it grew more into Physics. To give you an idea how seriously I was let me tell you something. While going into some old boxes I found out some paper-cutting from back in 1993(I was in 3rd Grade), about coverage of different space exploration, news about Pioneer, upcoming plan on a Probe in Saturn. I literally had a file to collect those. Back in that day, that&#8217;s what you could do most, without any internet, and from a remote part of Bangladesh.</span></p>\n<p><span>I was not extremely good in school, it&#8217;s not like what you read in the story, never stood 2nd type! It&#8217;s more like I never stood 1st type! But I was good in math, I was always progressing, and the main blessing I had in my life was support of my parents, like most parents in our time, they never pushed me into things, never tried to push their judgment into my life. When I advanced from one Class to another making some progress, they were happy with it, and I always made progress. So, they were happy, I was happy being a mediocre-student. But the issue was, in my mind, I was best. I know how childish it sounds, but I was really a child back then! I always thought that I am best if I try enough if I was given enough opportunity. So, Instead of trying to do best in the Class, I focused on many things, like starting a Detective Company to Secret R&amp;D Team, and none of those were joked, we were serious. </span></p>\n<h2><b>Reading!</b></h2>\n<p><span>I always loved reading, and I was extremely lucky to have so much opportunity to read. My house has some collection of children’s book, some cheap but interesting translation, my parents always brought me books in every possible occasion, as that&#8217;s what would make me happy. When that was not enough, I practically sneaked into most houses in the neighborhood. I was in 7th Grade in that time, and if a neighbor had an older kid they would have more books, and good part was if you show interest on reading books, and return it carefully, they would not mind to open up their bookshelf door for you, and most of them even loved me for this. Later on, I also finished up most of my relatives collection in the same town. Later on when in high-school everyone around knew I love books. Later on, this grew on my friends as well. I was lucky to have good childhood friends, who also enjoyed books as well. So, we would gift books to each others birthday, so we could read it ourselves. And few of my friend was very good students, and they always got some scholarship money, so we spend everything in our school life on books. </span></p>\n<p><b>So, what was I was reading? Everything!</b></p>\n<p><span>Starting from Children’s story later grew into Detective Story, Science Fiction, and later into the adventure story, literature, whatever comes into my hand. One interesting thing I also did from the very early stage, keeps track on what I am reading. It probably came from my hobby of collecting Stamps. We used to make notes and categorize our collection. So, I started doing the same for Books. I made a notebook, started noting and making a list of what I am reading, later on, I started to make some remarks, note, what I liked, what not. </span></p>\n<h2><b>Writing!</b></h2>\n<p><span>In my teenage life writing took even more meaning in my life. I was always good in expressing myself, and creative writing. But when one of our best friends left the country, and the only way to communicate was to write letters. So, I started to do that. It took different meaning very soon. We were enjoying writing letters so much, few of us in the same class who we see every day also started writing a letter to each other. However, it was nothing like a love letter or anything related to the affair, we were writing about anything, everything. At one point we were in a competition who could write the longest letter. In this competition, one of my friends wrote a letter to me (again from the same class, sitting almost to my next desk! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> ) over 50 pages, and to defeat her I wrote an over 100-page long letter! </span></p>\n<p><span>*If you are wondering what I wrote in those 100 pages &#8211; I have a very large family, where my relatives of great-great-grandfather’s cousin’s and their family are still very connected and if you saw me talking with any of them you would think they are my 1st Uncle or Aunt. So, what I did is wrote about my whole family tree, describing family history and later on describing each and every member I could remember. In my house we had a very old “Family Birth Register”, dating back in the early 1900s, I even took help from it!</span></p>\n<p><b>Dramatic changes in my Educational life!</b></p>\n<p><span>As described earlier I was ok in the study but not extremely good. And I was happy about it! All my close friend were very good student, come No. 1 or 2 position every time, where I was happy being at position 8 or 10. But as said in my mind I was the best. But our educational system requires you to memorize and write as it is. But I was so driven into reading books, and other things (also including play Cricket seriously), I did had the time and tried to focus on memorizing everything. And from the childhood, teachers kind of grow an impression of what to expect from a particular student. So, for an example, my social science teacher knew for years what to expect from me, and its very hard to get past that impression. </span><span><br />\n</span><span>When I was advancing from Grade 8 to 9, I took part in a Scholarship exam, we prepared for a year, the only handful of us was participating from our school, I was among those few, but I had literally zero chance to get the scholarship. I was not very bothered, do it as usual. But during the exam, we had to travel to another town to take exam, and it was in the month to Ramadan, and I did not break my fast. It was hard, I had 2 exams in everything single day. When I came back home one day with my father, my mom was sad seeing me so tired and drained out. But was happy in that sense that I am still fasting. Then she told me something very simply, which started a chain-reaction in my life. She told me, you think of yourself so highly, you spend all of your time with those same kids, who does so good in school, if you think of yourself so good, why not try to reflect that in your grade. </span></p>\n<p><span>Maybe its very normal for parents to talk like that, but as my parent never compared me with anybody or let me do in my way, I kept on thinking about this. The main thing came into my mind, if I am really good, I should be able to do good in any circumstances, if this requires me to memorize everything I could do that. If I want to be really that good, and be a good scientist, I need to learn to cope up and fight in any situation. Otherwise this is not justified.</span></p>\n<p><b>So, I changed myself, even memorizing books, that I absolutely did not like!</b></p>\n<p><span>In grade 9 &amp; 10, I studied very hard. I changed my lifestyle a lot. I changed the way I write in exam paper to change the impression of my teacher. Before I was always like studying in my mind, not writing what I just read, I forced myself in writing those answer I just read, it was very hard and boring at the beginning. But I had a very good private tutor, who guided me in every way. Later on my teachers in school helped in every way possible. In Bangladesh student have to take a part in an Certification Exam after 10th Grade, to advance in College, its called SSC, Secondary School Certificate Exam. I prepared for that. At the end of 10th Grade, I almost had the book fully memorized, I could write as it is, correct to each and every comma and space. I improved my english a lot. I learned some calculous which was not part of our curriculum, just to advance myself for college, and I knew if I had to do better in Physics I need to learn math and Calculous better. </span></p>\n<p><span>Everything was perfect, we took part in the big exam!</span></p>\n<p><b>And I did not get the grade I expected!</b></p>\n<p><span>Interesting our batch did not get good grade in SSC, we were the first batch in a new grading system, and we did not know that even before the exam, so none got perfect grade of 5.0, I got a very average grade. I was extremely disappointed, broken, but later learned to cope up and realized </span><b>a good lesson of life, even though you worked hard and did everything possible, still you might have to deal with failures. </b></p>\n<p><span>Another good thing also happened in my life too. I moved from the small town I grew up, Ishardi to the Capitol of the Nation, Dhaka, and was able to get chance in the entrance exam of all big colleges in the country where I tried. This gave me huge boost in confidence. I selected to study in Notre Dame College, in English Medium of Science. It was another controversial decision I made, for me a kid coming from rather small town, and from Bangla Medium it was a tough decision, but I stick to it for the future, because I still wanted to be a Physicist, wanted to study further in my life, I knew I had to be in English Medium.</span></p>\n<p><b>I had very hard time at the beginning of College!</b></p>\n<p><span>At the start it was very hard, our whole group suffered a lot to cope up with new curriculum, our first semester in College was the worst. But later we learned to cope up, we were 130 students in our Group (famous Group 8 in Notre Dame College), we all were helpful to each other, not everyone had private teacher in this point, we shared our notes, I was living first time without my parents, I was also dealing with occasional sickness due to not eating properly. So, there was a lot of struggle, but by the end of 1st year, I was dealing with everything properly. I got a good friend circle, I was not only doing well in college, I was also enjoying my freedom and mostly dealing with anything life throws at me!</span></p>\n<h2><b>My Introduction to Computer &amp; Programming!</b></h2>\n<p><span>Actually, I always loved programming, before entering University I already knew some basic programming, like qBasic, FORTRAN, even some level of Pascal. The kind of society I grew up, a computer was extremely rare before the year 2000. I was kind of lucky to be able to learn basic computer usage starting from the year 1998, got my first computer in 1999. It was so rare to own a computer in that time for that part of the word, that I was not only the first kid in my class to own a computer, but only a handful of people in my town knew how to use a computer. So, though I am not from a very rich or privileged family, extremely lucky that my parents understood the importance in that time. </span></p>\n<p><span>Another interesting aspect was unlike most people, I was not fully taken over by Computer Games. I am not saying gaming is bad, but most of the people I later see own a computer, the main thing they do with it was playing the game all the time. And you have to understand that almost pre-internet period in Bangladesh. I usthe internetnet first in my life back in 2001. I was more into tweaking things, trying to create or modify the software or create very basic type tools. I am super amazed with internet from first interaction. Search engine was in its peak time, discovering new resource was easy. I tried creating my first webpage in Yahoo Geocities back in 2001, wap page generator was also taking shape in coming years. </span></p>\n<p><b>Say Hi to WordPress in my life!</b></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Asif-R1.jpg\"><img class=\"aligncenter size-large wp-image-2068\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Asif-R1-1024x863.jpg\" alt=\"\" width=\"960\" height=\"809\" /></a></p>\n<p><span>      I created my first blog back in 2003 in Blogger, but while trying to add sidebar and customizing home page look, I find its very difficult for me to do anything in ASP.net, then I found WordPress, back in the year 2004. I still remember reading Matt’s blog and write up about how the whole project is moving ahead from b2 cafelog. WordPress was so easy, I hardly knew any PHP in that time, but my HTML and CSS knowledge was well enough for me being able to edit my personal blog. At the start hosting was one issue, but again I was lucky to manage one. Later when WordPress.com came, I migrated my blog over there and was happy at the beginning, as less hassle. I was also heavily involved with forum community. There was some very large community for webmaster and developer, I loved PHPbb and other solution for forums as well. But after experiencing some massive vulnerabilities, which lead a to major data breach, I focused more into personal blogging and soon into web development. Wth WordPress it was extremely easy to create a website, plugin and theming turn out to be not a complex task. The community and developers contributing in this ecosystem were another main factors. I feel very connected with the whole ecosystem, eventually became habituated with this, and started to feel it&#8217;s my comfort zone.</span></p>\n<p><b>How I started my career and company!</b></p>\n<p><span>I was using the name A. R. Communication, an as acronym of my initials back in 2001 as well, but it was nothing serious, no particular business. When in college, to support myself I first started a Marketing Trainee job in an Multi-international company. It was convenient with my college time and location, and they were literally paying to learn things. I started it just the as need of money, but later I enjoyed marketing, corporate training, and even enjoyed sales training as well. But I never took that job a as career choice.</span></p>\n<h3><b>My first venture!</b></h3>\n<p><span>In the year 2003, before even going to Universities I started a full 4 color magazine, printed publication with a close friend of mine. It was a fun ride. The name of the magazine was “</span><b>Fortnightly Tumi</b><span>”, the Bangla word “Tumi” means “</span><b>You</b><span>”! It was a lifestyle Magazine. My family already had history with printing business, so I had some experience. We did this business very thoroughly if you consider this as our first venture. We did proper market study, interviewed potential readers, organized group discussion, and got good funding. And we also started with bang! Hired renowned journalist and writer. I was barely 19 years old that time, have very experience people in my team over 50 years old, and managing them was good lesson. All together we published 3 edition, with good marketing trick we were able to sell 10,000 copy nationwide for that last edition, we had over 20 big brands in the country advertising with us. But still, that business did not work out. We had to shut down, as our investor (my friend’s family) want us to focus on our education instead of this, and we were probably way ahead of our time.</span></p>\n<p><b>Too many choices after college!</b></p>\n<p><span>I did fairly good in college, despite being in English medium. I applied for the various scholarship in different university all around the world, and was in a process of ISSB for Airforce as GD Pilot, the whole process was lengthy, and I was only doing it for 2 reasons.</span></p>\n<ol>\n<li><span>One of my friends asked me to collect the form, as it was close from my house, and I thought why not fill up together.</span></li>\n<li><span>GD Pilots also get the chance of studying Aeronautical Engineering and even switch to Engineering in future, and they will have a chance to study higher in that subject, which could open up my door for getting into Space Science. All for free, paid by Govt.</span></li>\n</ol>\n<p><span>Interestingly I get past all the test and selected finally. But they informed me, I have to stay in GD Pilot as a cadet and will be commissioned in 2 years, but have to think Pilot as a career, I was confused, I never enjoyed or felt the passion for speed before in my life. And we had few months time before joining the Force.</span></p>\n<p><span>In the meantime, I got so many opportunities in various universities. And one of my dream to study further in Physics was too close, as I got a chance in Uni Penn, and got a scholarship there as well. I had few other opportunities at Canada and Australia. I even applied for Visa for Australia as well, but later had to decide against all of those for some family and personal reason. </span></p>\n<p><span>I ultimately left Air Force as well, me &amp; my parents agree that&#8217;sts not a good career choice for me, given the option I had. I got a scholarship at North South University in Electrical &amp; Telecommunications Engineering. And as I started my company seriously at beginning of 2004, then an University that offers Open Credit, where I am able to choose my workload, it was just convenient. So, out of all promising option I almost chose the risky one, to make my own company and study in Bangladesh, at least for the Bachelor.</span></p>\n<h2><b>Inception of ARCom:</b></h2>\n<p><span>Actually ARCom is the short version of A. R. Communications. As I found making website too easy with WordPress, and a new found talent was helping me as well. </span></p>\n<p><span>Just as I never waste time on gaming, rather enjoyed my time to tweak things, creating new application. Instead of most people, when they visit a new website, they look at shiny look, or how good or better information it provides, whenever I visit a good site, I was always thinking how they are making money, how is this built and sustained. This quest has helped me making our first successful business. It took years, it did not turn into something very big in a night. During University years I did make many different kinds of websites, in that time I started earning first from selling websites. That was during the year 2005 or 2006, it was long before Sitepoint turn into Flippa, back in the shining days of DigitalPoint! I used that money to buy more domain. I hired my university classmate to work with me. The first outsider I hired in my company was a designer, as I needed help in there. Later it kept growing over the year.</span></p>\n<h3><b>First Big Success:</b></h3>\n<p><span>Though I already enjoyed some good (if not very big) payday by selling website, point to note here, I was selling website as business, not like you design a site and sell, its more about creating a business, create a process and sell it for a 2X &#8211; 5X yearly profit. But my big success came after 2008. Everything was turning so well, I was done with my University. My company was already a Team of over 20 people, with an office of 2500 square feet space. We started </span><b>The Tech Journal</b><span>, it worked so well in every aspect. As I was into writing blogs and also into gadget. After the first iPhone release I was involved in many ways, from working with the secret group who were Jailbreaking each and every firmware, also new kind of responsive websites, I was also into News &amp; those kinds of stuff. And because of my quest to understand how thing works, I had good grasp already into Content Distribution. Facebook and other Social Media are playing role into content and distribution already. It all helped.</span></p>\n<p><b>The Tech Journal became very big!</b></p>\n<p><span>Within 6 month of start we ranked within top 20k website. I was enjoying the ride to play with monetization and taking things into next phase. At one pick point we were ranked even within top 4000 website in Alexa. I had a good team with me. I finished my university already, 3 of my University friend was working with me full time. We all shared same vision for The Tech Journal, and it kept on growing. Because of our experience with WordPress we kept on innovating, for us we could build anything in WordPress, I had a solid Development team as well.</span></p>\n<h3><b>Marriage &amp; Beyond!</b></h3>\n<p><span>I got married at 2009, I was 25 years old back then. I don’t know if there is any perfect age for marriage, but I felt that was the right time, doing good in business, was looking for more stability in emotional life as well. I suddenly found my long lost childhood friend, Bipasha, whom I did not have any communication for past 13 years, and fall into love and we decide to get married. I will not go into details how we studied together since First grade and got detached when we were in 7th Grade, but still got married 13 years later. We started new life, life was never better.</span></p>\n<p><b>Moving Further with WordPress:</b></p>\n<p><span>Over the year WordPress kept growing so was I. I was writing, blogging, building things with WordPress. WordCamp was already something, but I was not able to attend or participate as I was still in Universities, but after finishing up, I decide to get more involved. I spoke in my first WordCamp in WordCamp Melbourne. For many years I was also very vocal about security and optimization, so I started to get so many opportunities into speaking and participating in various things. I still remember I spent one crazy summer in the US, participating 6 WordCamps, visiting 9 States and 13 cities in the process, starting from Boston and finishing in San Francisco! </span></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Asif-Speaking-At-WordCamp-SF-2014-V1.1.jpg\"><img class=\"size-large wp-image-2069\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Asif-Speaking-At-WordCamp-SF-2014-V1.1-1024x514.jpg\" alt=\"\" width=\"960\" height=\"482\" /></a>WordCamp SF 2014 &#8211; Mission Bay Conference Center\n<p><span>I was very lucky to be able to speak at last ever WordCamp San Francisco.</span></p>\n<p><b>Pursuing more into Investment!</b></p>\n<p><span>It&#8217;s mainly because of The Tech Journal, I was involved in many tech conferences, and always getting pitch from various startups. And my new grown circle of friends from WordPress and various other tech scene, I already established good connection in Silicon Valley. It was in the year 2009 when I made my first Angel investment, the credit must go to my friend circle, it was year before Angel List, there was offline syndicate where folks will share investment opportunity. But I really loved talking with young entrepreneur and seeing how new business works. I kept my focus in my sector, the field I understand. So, I mainly invested in tech. Out of several investments, one of my lucky ones was Facebook, I was able to invest in Facebook before their IPO, not very early, but still Pre-IPO stage, it was one of my lucky breaks. As I was already doing good in my business I tried to utilize it. I did not start investing because I had too much cash laying around, I started because I liked those opportunities, I wanted to help those ideas or startups.</span></p>\n<h2><b>Moving into US:</b></h2>\n<p><span>I started another business in US, where my partner was from Orlando, I spent one Thanksgiving with my Wife in Orlando, really loved the place, people, and we already got a long term Visa, and had full opportunity to live anywhere we want. My company in Bangladesh was already in stable phase, and as I was travelling heavily for years, my team was used to  being managed remotely, so it was not hard decision. But staying far from parents was hard. So, what we started doing maintaining both house in Bangladesh and Florida. For years we spend some part of the year in US, rest in Bangladesh. </span></p>\n<h3><b>Child &amp; Changes in Life!</b></h3>\n<p><span>Like everybody else our life was bound to change when we had baby. In year 2014 we were getting for our first baby. We decide to stay in US, because better medical facility and my involvement in different things. Just a month after WordCamp San Francisco in November we were blessed with Aaniyah. Actually our life already changed when we were planning and waiting for the baby. I was feeling the work routine I have would never let me spend the time I want to have with my baby.</span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Laugh.jpg\"><img class=\"aligncenter size-large wp-image-2070\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/Super-Laugh-1024x691.jpg\" alt=\"\" width=\"960\" height=\"648\" /></a></p>\n<h2><b>Analytify &amp; A New friendship!</b></h2>\n<p><span>I became friends with </span><a href=\"http://www.adnan.pk/\"><span>Muhammad Adnan</span></a><span> online back in 2014, he was working with his premium Plugin Analytify back then. I found this as a real good project and started talking with him, giving him various advice, and we later decided to team up, and we released the first free version of Analytify WordPress plugin on 1st January 2015. It was a success, it completely revolutionizes how people use Google Analytics in WordPress. Later Adnan visited me in the US in 2015, and together we attended WordCamp Miami and had a good trip and drive to Key West! The most interesting part of the friendship lies somewhere else. I am a Bangladeshi, and Adnan is Pakistani. Both of our nation has a very bad past. Bangladesh was once part of Pakistan, back in 1971 we fought for about 9 months, and millions of people died in the process before we got Freedom and Declared Independence from Pakistan. But it creates a life long enmity between two countries. I know for an outsider it does not make sense to keep some feelings for that long, but for its very personal for us. Our country lost so much in that war, even if you speak about just my family, My Grandmother lost half of her family in that war, Bangladeshi especially have a very strong opinion about any Pakistani. But meeting Adnan, becoming friends, and working together made me realize few interesting thing, this feeling, this agony against any Pakistani was one-way. Most of the Pakistani did not have any idea what their Government or Army did, they hardly have idea about their Ancestors’ doing. They rather still consider us Brother! Some of the history he never knew, they never read in their history book. I would never know this if it&#8217;s not for </span><b>WordPress</b><span>, we would never meet, this change in understanding for both of us never happened.</span></p>\n<p><span>And we together kept on growing Analytify, as the best Google Analytics Plugin in WordPress, and planning many interesting things together.</span></p>\n<h2><b>Coming Back to Bangladesh!</b></h2>\n<p><span>While I was staying and mostly investing in the US, I started investing in some interesting Teams in Bangladesh from the year 2012. Over the year, a few failed, but some really kept on growing. In the year 2016, in Pre-Trump period we were expecting our 2nd Baby, and it was too hard for us to manage alone in the US, and we both were missing our family. I want my kids to grow up having their family close to them, the way I grew up. I want my parents to feel close to them. Occasionally when we visited Bangladesh with our first child, I was quite blown away the way they loved and took care of the baby. It all made sense if we spend some more time in Bangladesh, and have the Baby in here. And the weird things going on with the US also motivated my decision. The kind of craziness we are seeing in the US, actually did not start just by having Trump elected. It goes way back. We were living in a  very peaceful neighborhood in Florida, a small town called Orange City, near Daytona Beach! But we could still feel the change in air. Our parents have a pending Immigration Application for near a decade, they are on the que to become US citizen anyway. We first tried to have them with us, but US Embassy in Bangladesh rejected that application, for absolutely no reason. And my other venture was already growing in Bangladesh. So, all together we decide to stay in Bangladesh for awhile, we moved in mid-2016.</span></p>\n<h3><b>Welcoming Aadiyah into the Family!</b></h3>\n<p><span>We had our 2nd Baby Aadiyah in September 2016, a bit ahead of time, my wife got little too sick, but we were able to handle everything because of having family together. We moved into a large Duplex house, to have enough space for the baby. We feel we are complete as family and never been this happy before.</span></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_1610.jpg\"><img class=\"size-large wp-image-2071\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_1610-1024x683.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a>Complete Family!\n<h1><b>weDevs &amp; My Legacy!</b></h1>\n<p><span>I will discuss later my involvement in Bangladeshi WordPress Eco-system. But back in 2013 I first met Tareq, a very talented Bangladeshi Programmer, running a successful WordPress product company. He and his Partner Nizam built an amazing company, and they had few very interesting and super successful products for WordPress. I started helping as possible from my end, I want them to succeed and pushing them to move forward. I became official part weDevs back in 2015. I was helping them to grow internationally and advising them as part of board. We establish a US company and kept on growing. Though I was in WordPress for very long time, my main company ARCom was never serious into WordPress Product. I released some of our work in Open Source via WordPress.org Plugin Directory, and with my growing experience with Analytify made me dig more into WordPress products.</span></p>\n<p>&nbsp;</p>\n<p><span>Somehow at the end of 2016, Tareq and I was looking at our numbers for weDevs in 2016, we noticed something very important. 3 of us spend more time digging deep into the numbers, and re-analyzed our process and priorities. Soon we all came into understanding we have to take things forward with wedevs, the growth of the industry is very important, if we want to be big in future this is the right time. They proposed to me if I could take over as CEO. Nizam was running weDevs successfully as CEO for years, and I never thought seriously about running another company, and my retirement plan already in place. But we found this could be the best thing we could do in the year 2017, where I have little over 1.5 years before my planned retirement. </span></p>\n<p><span>So, I jumped into the ship. I always dreamed to make a rocking and successful company in WordPress product space, and it was my chance. And as it&#8217;s already a running successful company, my goal here to build a legacy, instead of just making a profitable company, built a sustainable company, and proper team, a fine management, that could grow into future, that could </span><b>outgrow us</b><span>, something even bigger than us combined. </span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5190R.jpg\"><img class=\"aligncenter size-large wp-image-2073\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5190R-1024x683.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a></p>\n<p>&nbsp;</p>\n<p><span>So, I took over weDevs as CEO in January 2017, I took 2 months to take control and blend fully into day to day system. We announced this officially in the month of March. Dhaka is a very jam packed city with the highest number of people living in per square miles in the world. We were already a Team of about 25 people. I still had few other business that I have to take care. So, we moved to a new large space. A total of 5000 square feet space, fully open, we built a unique office that could sustain us for next few year. I moved my house and office in the same area, called Mirpur DOHS. Me, my partners, and almost 12 of us together moved into this area together. As we now live within 2 min distance from office, the Traffic could not bother us at all. We gave option for our employees to move into too. We paid the moving cost, we even adjusted salary if they faced any increase of cost for housing or anything. We took time, but now our new office is complete, it&#8217;s one very interesting WordPress themed workplace.</span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5240R.jpg\"><img class=\"aligncenter size-large wp-image-2074\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/MG_5240R-1024x683.jpg\" alt=\"\" width=\"960\" height=\"640\" /></a></p>\n<p>&nbsp;</p>\n<p><span>We are growing further, our team of 25 people will soon become team of about 50. We are working on new stunning products, we just launched a brand new super fast Form Builder plugin named weForms. It will revolutionize the way  people build forms and create anything from just a simple contact form to organize a quiz. Our team built it entirely on Vue.JS, as a single page app. It&#8217;s unbelievably fast, almost nothing we have seen so far inside WordPress.</span></p>\n<p>&nbsp;</p>\n<p><span>Our Team internally working very hard to update our existing product and we are working on some new things that I am incredibly looking forward to. Before I join, weDevs did not have a marketing team, we ran entirely autonomous. In last 6 months, we have built a sustainable Content &amp; Marketing Team. I am working tirelessly with my CTO &amp; COO to build a new culture. We have a two-way feedback evaluation process. I created a kind of unique in its way, a grading system where company could give feedback to employee, in exact point, and inform directly where they need to improve. Its a kind of algorithm I have developed over the years, and really helps you to make a happy and working team. In the same way, Employee also have the opportunity to give feedback to the company directly &#8211; about what makes them happy, how company could help him grow more, or if company is addressing every concern properly. We do this quarterly basis, and review in each quarter, so the improvement could always be tracked, graphed and addressed properly.</span></p>\n<h2><b>Bangladeshi WordPress Community!</b></h2>\n<p><span>This is another very proud thing I would like to talk about. When I first had a very detail conversation with Matt Mullenweg, back in 2011, he was very happy that I attending so many WordCamp, and be that much involved with the community, he asked me about WP community back my country, and told me if we are able to have a good group, a nice meetup and eventually a WordCamp, he will try to attend. I found a new role for myself, over the year we grew Bangladeshi WordPress community. Locally we have very growing and engaging WordPress Group, called WordPressians, we have over 21,000 Members in Facebook. We are a team of 15 Admin/Organizer who maintains everything, and it&#8217;s an open group so always evolving. Over the year, we 15 became very close to each other, and we all consider each other as best friend. We contribute in Open Source together, we hangout together, attend various WordCamps around together now, we plan day out together as well. This is another blessing happened to our life mainly because of WordPress.</span></p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_9881.jpg\"><img class=\"aligncenter size-large wp-image-2075\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/08/IMG_9881-1024x417.jpg\" alt=\"\" width=\"960\" height=\"391\" /></a></p>\n<p>&nbsp;</p>\n<p><span>Starting from 2013 we are official meetup chapter in Dhaka. We organized over 15 meetup, where each and every meetup of our could be considered little WordCamp, with 4-6 session, and had 150-300 attendees. We organized all of our meetup in our own platform, a WordPress plugin we created, so everything happened at &#8211; WPressians.net, not at Meetup.com, we did it with direct permission from WordPress Foundation. We have made WordCamp Application starting from 2013. And I even faced Organizer interview twice in 2014.</span></p>\n<h3><b>But the sadness!</b></h3>\n<p><span>There is one thing that hurt me a lot. Though me and our organizing team worked so hard to grow Bangladeshi WordPress community, but due to some miscommunication, we still don&#8217;t have any WordCamp yet. The foundation failed to take timely measures to proceed with our WordCamp application, we faced repeated issues in getting proper timely response from them. Out of frustration and years of waiting back in 2015, we organized a CMS Conference in Dhaka, where we had over 10 speakers, and there were over 1500 attendees. So our team has proven their position, but things took so long from the Foundation. I wrote to foundation much time, there is one on-going conversation, still, we hope for the best, this the way Foundation handled our communication, shows the lack-of-attention clearly. I am almost devastated in this and very hurt! When I first attended and spoke in WordCamp Melbourne in 2011, I was the first Bangladeshi to ever do so. I but I kept on pushing. Now there is over 10 from even just our organizing team where they attended in various WordCamps around the World. Last year we attended WordCamp Singapore with a team of 9 people from Bangladesh. We are gaining experience, we are driven, but still lacking behind because of Foundation, sadly!</span></p>\n<h1><b>My Future Plan!</b></h1>\n<h2><b>Plan to retire by my next Birthday!</b></h2>\n<h3><b>weDevs to keep on Growing!</b></h3>\n<p><span>I am here at weDevs to create and fine tune the process, and build the vision. I already described what&#8217;s happening in there. From my start as CEO we are seeing about 15% month to month growth in revenue and about 20% in market reach, We will keep on doing so and beyond. And we will probably get more result in long term, and building team, forming up a new culture and getting result certainly take more than 6 months.</span></p>\n<p><span>So far the plan is to me stay in Day to Day involve up until June 2018. This is not an exact day plan, could change with time. But possibly by September!</span></p>\n<h2><b>ARCom being Autonomous!</b></h2>\n<p><span>I am running ARCom without much of daily maintenance for awhile now. I have Team Lead, Editors, Managers in place, that&#8217;s running their wing successfully for awhile now. There are few new plans and things my Team working, but all team has a lead, which they ran with ownership, and mostly sustainable. There are some places where we need some work, I hope it will be done by that projected time.</span></p>\n<h2><b>Geeky Social, 3rdBell and my other venture!</b></h2>\n<p><b>Geeky Social</b><span> has a solid team, and they are running amazingly. I am very proud of our team. I am part of the board and now serving as Chairman, and probably will continue to do so. I hope by next 6-9 months we will be even stronger financially, our month to month growth is already steady and growing, we are clear it will grow a lot from there. One of our core success is to grow beyond a cash-hungry business, which is incredibly hard if you are involved in Digital Media, and buying. But we got past that and now everything taking shape. I am very confident in the team and looking forward.</span></p>\n<p><b>3rdBell</b><span> faced so many harmless over the year, but now we have a solid platform, the founder and incredibly motivated. Me and other investors are looking forward. I am still involved as Technical Director, this role could extend for the time being when we go through some changes, but we have solid plan to move forward, and by mid-next year, it should be different height.</span></p>\n<p>&nbsp;</p>\n<h2><b>Me &amp; WordPress &#8211; going forward! </b></h2>\n<p><span>I will have people to maintain my plugin, and provide even better support, and few of them are even joining next month, so it will be well taken care of. I will shift the community role mostly to new people and others. Next 9 months I will dedicate to have more Contributor from my community and circle. I will literally incubate contributor,  from Core contribution to Docs and Community team. I will drive more into sharing my experience and finding over the decade. Besides writing, which I think is my superpower(!), but still under used, I will drive more into Speaking. Those are my next upcoming  Session, if you are happened to any of those WordCamp, please say Hi!</span></p>\n<ol>\n<li><span>WordCamp Colombo, Sri Lanka &#8211; 23rd September</span></li>\n</ol>\n<p><b>Topic &#8211;</b><span> Making Million in WordPress Plugin But Not Being Evil!</span></p>\n<p><span>      2)  WordCamp Ahmedabad, India &#8211; 7th October</span></p>\n<p><b>Topic &#8211;</b> <span>You heard content is the king, but are you paying attention to Content Distribution?</span></p>\n<p>&nbsp;</p>\n<p><span>If you read so far, you should understand how relevant both topic to my life! </span></p>\n<h2><b>How could I financially sustain this?</b></h2>\n<p><span>I am thinking, planning and working for this retirement plan for awhile. The main question I got asked how could I financially sustain. I don’t know what kind of impression you have got so far by reading about my life. Yes, I own several successful ventures, running a very growing and profitable business, I also invested in 20+ venture and was extremely lucky to enjoy some exit from investment. But not in very big scale. Some of my investment looks promising, but that does not make me very rich in cash. So this plan further is not about having tons of cash in hand laying around, it&#8217;s more about having sustainable and ongoing earning. I do certainly have some exit I am looking forward to but my plan will not depend on it.</span></p>\n<h2><b>The Hardest Part!</b></h2>\n<p><span>When you grow business for over a decade, the main challenges are people. Like some successful venture, I also have business that are not cash-positive, but have people involved with it for years. When you run a business, you become responsible for those people, their family depends on your decision, that type of responsibilities will limit you sometime taking logical business decision. And really relying so much into people, and the fear of let going control could be hard dilemma any Entrepreneur could feel. But over the year I learned, sometimes you have to let go to get things done for future, sometimes you have to take a leap of faith. So, I practiced that for some time now. I am positive that things will work out, and still break apart.</span></p>\n<h1><b>Reason: Why I am doing this?</b></h1>\n<p><span>In some ways I feel I am doing this for very long time. I have built team, product, faced hard time, and also enjoyed when things work out, I have this this circle so many times. There is always hard time and seen how it all ultimately worked out. I kind of get out of this circle. Sometimes I feel tired. Though for a person like me who single handedly started everything, broke so many barriers, it&#8217;s hard to get me tensed. I know how to deal with pressure, hard time, shitty situation. In some ways I am resistant to those. But when I reflect everything in my life I am very proud what I have done, what I have Achieved.</span></p>\n<p><b>Monetary wealth did not made me rich! </b><span>But the experience and relation that I cultivated did. I feel rich because of this. </span></p>\n<p><span>When I was still a teenager, dreaming to be physicist, I had very thorough vision of my future, I wanted to finish my PhD by age 25. Later in the course of life I became Entrepreneur. Then my goal was to become million by age 25 and have a stable family. I was successful in that. I have vision to built amazing team and product, I am doing that right now. </span></p>\n<p><b>I want to move on, I would like to see greater meaning of life. </b><span>That does not mean what I am doing does not mean great thing, it&#8217;s just going beyond. I always thought life has bigger meaning for me, I always felt privileged, the kind of life I had most people from my demography could not have, so I have bigger responsibilities! </span></p>\n<h2><b>How Big is WordPress?</b></h2>\n<p><span>WordPress is biggest CMS and No.1 solution to make Website, but how many business do you see worth over a $100M in WordPress Ecosystem? Or over $50M? Not much. And because of so much recent #WPDrama, one thing is very clear, we have long way to grow. I kind of feel to make it too big, we even limited ourself as well. I do see the power struggle inside community as well. The most respect persons in the community, now have very large number of haters, and for good reason. That is sad, maybe we all need to rethink!</span></p>\n<h1><b>What will I do in future?</b></h1>\n<p><b>Maybe I will drive deep into science, I will be still 34, even enough time to study something new! </b><span>Maybe I will just enjoy the break for awhile. Maybe I will try to find better meaning of life. Or maybe will write a book, I don’t know, I want to keep the option open, have an open heart. I do certainly earned this freedom myself, I am very grateful to the list of endless great people that helped me throughout the decade of my career.</span></p>\n<h2><b>Your kids to reflect You!</b></h2>\n<p><span>We all want our kids to be like us, we want them to reflect us in a good way, and go beyond. But If we are not involved in every process of their life how could this happen? If you let your family, mainly wife to entirely take care of your kid how they are going to learn from you? Do you really believe just giving 1-2 hours a day will do the trick? It&#8217;s way more than that. I want to be an integral part of my kids’ life. I want to be fully involved in their process of growing up. In this whole thing, there is nothing related of deciding fate of their life. I have no expectation of making my kids something, I am fully open, they will decide their destiny, their own venture. I just want to help them understand this World, </span><b>be their Dad</b><span>, be the friend they could play with, be the teacher they need, as long as they need.</span></p>\n<p><span>I will spend more time with my family, my 2 young daughters really need more of me, they will be 4 &amp; 2 by next year. They will go into school, perfect time for me to jump in.</span></p>\n<h1>Conclusion: For You!</h1>\n<p>If you came this far reading this, you could probably tell I enjoyed writing! My routine hardly gives me more option to do it regularly. I was meant to write this HeroPress article last year but was too busy, and the timing was too near of the 2nd baby&#8217;s birth!</p>\n<p>I don&#8217;t expect others to try to retire early, but having a choice in life is important. Try to look back. Why do you work? Is it because of earning money? Just to survive, just to sustain your family? This should not be the purpose of human life. I believe our Creator created us for a reason, we are not meant to live and die selfishly like an animal. There should be more meaning of life other than trying to buy luxury!</p>\n<p>There is a Ted talk describing we humans, evaluated to be Human, one of the core reason was we cooked, and gathered and stored food, so we spent less time like other Gorillas to try to find food and spend most of the days for that purpose. We cooked, it was easy to chew, and it gave us more free time, so we were able to innovate! Interesting theory, but surely intriguing.</p>\n<p>Life is not always about achieving it all. It&#8217;s sometimes about the journey. You can&#8217;t always win. You have to learn from the journey and move on.</p>\n<p>When I look back I do see, my decision to invest worked out many ways. As I diversified my venture it was a good move. I made many mistakes and described in details here as well, but I tried to learn and reflect that in my further life. I am who I am, because of the journey. I don&#8217;t regret any part of it. If I had the chance would I have done it differently? I don&#8217;t know, maybe that could be a different journey. My life is wrapped up entirely with WordPress, I am and will always be proud of that. But maybe I need to give myself a fair chance to see the world clearly. For past 13-14 years, I have worked every day on an average 14 hours of more, I still stay at the office for over 12 hours. But I don&#8217;t do it because I have to, I do it because I enjoy it. But this is taking too much of my life, I am too swamped up. This break is necessary.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Retiring Young in Bangladesh, Thanks To WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Retiring%20Young%20in%20Bangladesh%2C%20Thanks%20To%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Retiring Young in Bangladesh, Thanks To WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fretiring-young-bangladesh-thanks-wordpress%2F&title=Retiring+Young+in+Bangladesh%2C+Thanks+To+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Retiring Young in Bangladesh, Thanks To WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/&media=https://heropress.com/wp-content/uploads/2018/08/083017-150x150.jpg&description=Retiring Young in Bangladesh, Thanks To WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Retiring Young in Bangladesh, Thanks To WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/\" title=\"Retiring Young in Bangladesh, Thanks To WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/retiring-young-bangladesh-thanks-wordpress/\">Retiring Young in Bangladesh, Thanks To WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Aug 2017 00:00:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"M Asif Rahman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Akismet: Akismet and Drupal, Together Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1960\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://blog.akismet.com/2017/08/29/akismet-and-drupal-together-again/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1569:\"<p>Akismet is used on millions of WordPress sites, but it isn&#8217;t only used with WordPress. In fact, Akismet can be integrated with any CMS, and <a href=\"https://akismet.com/development/api/#use-a-library\">more than 30 Akismet libraries and plugins are available for non-WordPress systems</a>.</p>\n<p>The <a href=\"https://www.drupal.org/\">Drupal CMS</a> has had an unofficial Akismet integration available via the <a href=\"https://www.drupal.org/project/antispam\">AntiSpam module</a> since 2009, but it hadn&#8217;t been updated since 2012, and thousands of sites were still using it despite some significant bugs. In the interest of providing the best experience possible for Akismet customers, we&#8217;ve contributed some time and code, and <strong>we&#8217;re happy to announce that a new stable version of AntiSpam for Drupal is available.</strong></p>\n<p>Version 7.x-1.6 can be downloaded from the <a href=\"https://www.drupal.org/project/antispam\">AntiSpam project page</a> on Drupal.org. Please let us know about any issues you may encounter by leaving a comment below or by opening a ticket at <a href=\"https://www.drupal.org/project/issues/antispam\">the issue tracker for the AntiSpam module</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1960/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1960/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1960&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2017 19:16:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Dougal Campbell: Bugs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://dougal.gunters.org/?p=81413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://dougal.gunters.org/blog/2017/08/29/81413/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:550:\"<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I seem to have a knack for finding obscure edge-case bugs in WordPress. <a href=\"https://twitter.com/hashtag/wordpress?src=hash\">#wordpress</a> <a href=\"https://twitter.com/hashtag/oembed?src=hash\">#oembed</a> <a href=\"https://t.co/aucCSDb76H\">https://t.co/aucCSDb76H</a></p>\n<p>&mdash; Dougal Campbell (@dougal) <a href=\"https://twitter.com/dougal/status/902299942701674497\">August 28, 2017</a></p></blockquote>\n<p></p>\n<p>&nbsp;</p>\n<div class=\"yarpp-related-rss yarpp-related-none\">\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2017 15:53:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Dougal Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: Matt Mullenweg Addresses Concerns About Gutenberg, Confirms New Editor to Ship with WordPress 5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/matt-mullenweg-addresses-concerns-about-gutenberg-confirms-new-editor-to-ship-with-wordpress-5-0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6828:\"<p>Matt Mullenweg published an appeal to WordPress users over the weekend in a post titled &#8220;<a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\" target=\"_blank\">We Called it Gutenberg for a Reason</a>.&#8221; In it he offers a better look at his vision for Gutenberg, which he contends will be as transformative for WordPress&#8217; future as the first movable type printing was for Europe&#8217;s printing revolution.</p>\n<p>Mullenweg identified the new Gutenberg editor as the tool that will enable WordPress to meet its competition and the opportunities available in the small business sector:</p>\n<blockquote><p>WordPress’s growth is impressive (28.5% and counting) but it’s not limitless — at least not in its current state. We have challenges (user frustrations with publishing and customizing, competition from site builders like Squarespace and Wix) and opportunities (the 157 million small businesses without sites, aka the next big market we should be serving). It’s time for WordPress’ next big thing, the thing that helps us deal with our challenges and opportunities. The thing that changes the world.</p></blockquote>\n<p>Automattic has been moving towards offering better support for small businesses with its 2015 <a href=\"https://wptavern.com/automattic-acquires-woocommerce\" target=\"_blank\">acquisition of WooCommerce</a> and steady commercialization of Jetpack, with plans targeted at business owners. The company is poised to capture even more of the self-hosted small business market by allowing customers to <a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\" target=\"_blank\">tap into WordPress&#8217; third-party ecosystem</a>.</p>\n<p>However, many vocal opponents to Gutenberg (and the changes that will come along with it) are concerned that the project is being developed chiefly to serve Automattic&#8217;s customers and corporate interests.</p>\n<p>&#8220;Gutenberg has been mainly introduced by one particular company which seems to be in urgent need to compete with other SaaS businesses,&#8221; WordPress theme development company owner <a href=\"https://www.mhthemes.com/\" target=\"_blank\">Michael Hebenstreit</a> said. &#8220;That’s fine, but then keep it as a plugin for at least 1-2 years, put it on WordPress.com (to gather real live feedback and usage data) and nobody will have any issues with that approach.&#8221;</p>\n<p>Mullenweg addressed concerns that Gutenberg is being developed for Automattic&#8217;s customers in a <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/#comment-587598\" target=\"_blank\">reply</a> to a similar comment on his post.</p>\n<p>&#8220;There definitely is a contingent that seems to think that, but if you think through it logically it doesn’t make sense: if it were just to benefit Automattic it would be far easier and more advantageous to just do Gutenberg unilaterally in Calypso, where it would primarily benefit WordPress.com,&#8221; Mullenweg said. &#8220;Doing it in wp-admin and core first involves a lot more discussion, public feedback, backwards compatibility concerns, and breaking a lot of new ground for how core uses Javascript, and because it’s in core the benefits will accrue to all hosts of WordPress, many of which directly or indirectly compete with Automattic. We are reading and trying to learn from all the negative feedback though, even when it’s from people who haven’t used Gutenberg much yet.&#8221;</p>\n<p>Those who build websites for clients have voiced concerns about how Gutenberg will affect their businesses, whether the brand new interface will drive users away from WordPress. Developers and product owners are eagerly awaiting more answers on what it means for existing plugins and themes in the ecosystem, as the project has yet to iron out some of the more technical details regarding extensibility and support for metaboxes. This naturally raises concerns about Gutenberg&#8217;s timeline.</p>\n<p>&#8220;Gutenberg will ship with WordPress 5.0, but the release will come out when Gutenberg is ready, not vice versa,&#8221; Mullenweg said. &#8220;We still have target dates to help us think about scope and plan for all the supporting documentation, translation, and marketing efforts, but we’re not going to release anything until Gutenberg is something the team working on it agrees is ready.&#8221;</p>\n<p>WordPress users have been conditioned to anticipate releases on a regular schedule but the new approach to core development will allow for the next major release to wait until the targeted features are ready. Mullenweg confirmed in the comments of his post that Gutenberg will ship with a legacy interface to offer backwards compatibility for PHP metaboxes that have not yet updated to be JS-powered.</p>\n<p>&#8220;Some things like toolbar buttons will definitely need to be updated to work with Gutenberg, other things like Metaboxes there will be no problem to provide a legacy interface for a few releases,&#8221; Mullenweg said. &#8220;But I would say that plugin authors should start updating their plugins in late September if they want to benefit from Gutenberg’s launch.&#8221;</p>\n<p>One of the most prevalent concerns that remains is React&#8217;s licensing issues, which came to a head after the Apache Software Foundation added Facebook’s BSD+Patents license to its Category X list of disallowed licenses for Apache PMC members. Facebook&#8217;s engineering directors considered re-licensing the project but <a href=\"https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license\" target=\"_blank\">decided against it</a>, citing &#8220;meritless patent litigation&#8221; as the reason behind adopting the BSD + patents license. The WordPress project has yet to announce its stance on the decision.</p>\n<p>&#8220;We anticipated a decision on React around the Apache deadline (closer to now), will have more to announce about WP and Gutenberg’s approach here in the next few weeks,&#8221; Mullenweg said.</p>\n<p>He also reiterated how invested he is in the WordPress project and ecosystem as a whole. His post elaborated on the many benefits he anticipates for plugin, theme, and core developers, agencies, users, and hosting companies. He challenged the WordPress community to see Gutenberg in the same light.</p>\n<p>&#8220;My life’s work is improving WordPress,&#8221; Mullenweg said. &#8220;I firmly believe that Gutenberg is the direction that will provide the most benefit to the maximum number of people while being totally in line with core WordPress’s philosophies and commitment to user freedom. So keep giving us your feedback, and let’s push through the fear together. It’s worth a little discomfort to change the world.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Aug 2017 18:01:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Matt: We Called it Gutenberg for a Reason\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47503\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9241:\"<p>Movable type was about books, but it wasn’t just about books. Ideas spread. Literacy spiked. The elite monopoly on education and government started to crack. Luther’s <em>95 Theses</em> were printed a press, rocking Europe, and he issued &#8220;broadsheets.&#8221; Broadsheets became newspapers; newspapers enabled democracy. The printing press ushered in social, political, and economic sea changes. Gutenberg changed everything.</p>\n<p>WordPress has always been about websites, but it’s not just about websites. It’s about freedom, about possibility, and about carving out your own livelihood, whether it’s by making a living through your site or by working in the WordPress ecosystem itself. We’re democratizing publishing — and democratizing work — for everyone, regardless of language, ability, or economic wherewithal.</p>\n<p>WordPress’s growth is impressive (<a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">28.5% and counting</a>) but it’s not limitless — at least not in its current state. We have challenges (user frustrations with publishing and customizing, competition from site builders like Squarespace and Wix) and opportunities (the 157 million small businesses without sites, aka the next big market we should be serving). It’s time for WordPress’ next big thing, the thing that helps us deal with our challenges and opportunities. The thing that changes the world.</p>\n<p>Gutenberg.</p>\n<p>For those who don’t know we kicked off the Gutenberg project around the beginning of the year, <a href=\"https://ma.tt/2017/06/4-8-and-whats-coming/\">I talked about it and we did our first public releases in June</a>, and the team has been doing <a href=\"https://make.wordpress.org/core/tag/core-editor/\">weekly updates</a> of the public beta plugin <a href=\"https://wordpress.org/plugins/gutenberg/\">that&#8217;s available for anyone to try out in their wp-admin</a>.</p>\n<p>When Johannes Gutenberg’s press came out, people mostly used it to print the same religious text monks had been copying. It wasn’t until ten or fifteen years later that people started innovating and trying their hands at new kinds of writing, and the wheels of change started to spin faster. Now it’s WordPress’ turn to do the same. Gutenberg meets our challenges and opportunities head on while simultaneously benefitting everyone who makes a living working in the WP ecosystem. It’s about a lot more than just blocks. Our Gutenberg moves every part of the WordPress ecosystem forward:</p>\n<p><strong>Developers and agencies</strong> will be able to create interactive templates that clients can easily update without breaking things or dealing with custom post types: Imagine a custom “employee” block that you can add to an About page that includes a picture, name, and bio. They’ll be able to replace most meta boxes, and they’ll get a chance to update old code or clients to work in this new paradigm.</p>\n<p><strong>Plugin developers</strong> will be able to completely integrate into every part of WordPress, including posts, pages, custom post types, and sidebars without having to hack TinyMCE or squeeze their entire feature behind a toolbar button. Today, every plugin that extends WordPress does it in a different way; Gutenberg’s blocks provide a single, easy-to-learn entry point for an incredible variety of extensions. Some folks have already begun to port their plugins over and finding it easier to build and to have a much improved UI, I&#8217;m looking forward to highlighting those stories as we get further along and more people write about them.</p>\n<p><strong>Theme developers</strong> won’t need to bundle tons of plugins or create their own page builders. There’ll will be a standard, portable way to create rich layouts for posts and guide people setup right in the interface, no 20-step tutorials or long videos needed. Every theme will be able to compete with multi-functional premium themes without locking users into a single theme or compromising their experience.</p>\n<p><strong>Core developers</strong> will be able to work in modern technologies and not worry about 15 years of backwards compatibility. We’ll be able to simplify how menus, widgets, and the editor work to use a common set of code and concepts. The interface will be instantly responsive.</p>\n<p><strong>Web hosts</strong> will have better signup rates, as Gutenberg opens up WordPress to an entirely new set of people for whom WordPress was too complex and hard to set up before. (Remember our goal: to democratize publishing.) Their churn rates will go down: they’ll stop bleeding customers to Wix, Weebly, and Squarespace, and fewer people will abandon their sites because it was too hard to make things look they way they wanted.</p>\n<p><strong>Users</strong> will finally be able to build the sites they see in their imaginations. They’ll be able to do things on mobile they’ve never been able to before. They’ll never have to see a shortcode again. Text pasted from Word will get cleaned up and converted to blocks automatically and instantly. (I pasted the first version of this post from Google Docs and it worked <em>great</em>. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f44c.png\" alt=\"?\" class=\"wp-smiley\" />) They’ll start manipulating their sites in ways that would have taken a developer. They’ll be able to move from blogging to using WordPress as a CMS without missing a beat. Editing posts will just work; they’ll write more. They’ll learn blocks once, and then be able to instantly use and understand 90%+ of plugins.</p>\n<p>I could go on about how photographers will be able to create rich galleries, parallax images, and better portfolios, or how poets will finally be able to preserve whitespace as they write, but you get the idea. It’s big. It moves the WordPress ecosystem forward, but it also moves the whole web forward.</p>\n<p>Which is scary! Because change always is, and this is a big one. But a scary thing is usually a thing that leads to growth, if you can push through it. Ten years ago, agencies and developers worried that software like WordPress would ruin their business because clients wouldn’t need help updating their sites any more, and would maybe even just start building their own sites. But their worse fears didn’t come true — instead, it created new opportunities for everyone.</p>\n<p>(People were worried when the printing press was invented, too. A Swiss biologist warned against the “confusing and harmful abundance of books,” but I’d say it all worked out in the end.)</p>\n<p>This is not to say that nothing will go sideways with Gutenberg, or that people’s concerns about it are unfounded. Making something people want is really hard to do and easy to mess up — we  definitely have in the past. I share many of the concerns or worries with today’s version of Gutenberg, and we’re working to mitigate them. Gutenberg will ship with WordPress 5.0, but the release will come out when Gutenberg is ready, not vice versa. We still have target dates to help us think about scope and plan for all the supporting documentation, translation, and marketing efforts, but we’re not going to release anything until Gutenberg is something the team working on it agrees is ready.</p>\n<p>And as we work, we’re listening: feedback on core and feature plugins gets read, heard, and considered. Every review of Gutenberg, even the rude ones, has a response. Seven months of vigorous and public debate, chats, tickets, and code changesets brought us to where we are today, and there will be  a fair amount more before we can present the Gutenberg vision in a mostly-complete state. I welcome it; apathy would worry me a lot more than disagreement or controversy.</p>\n<p>Creating great software will never make every person happy. We’re not creating The Perfect Product, we’re choosing a path between many good options, weighing all of the inevitable trade-offs that come from a change, listening, shipping, and then doing it all over again. Iterating. My life’s work is improving WordPress. I firmly believe that Gutenberg is the direction that will provide the most benefit to the maximum number of people while being totally in line with core WordPress’s philosophies and commitment to user freedom. So keep giving us your feedback, and let’s push through the fear together. It’s worth a little discomfort to change the world.</p>\n<blockquote class=\"wp-block-quote blocks-quote-style-1\"><p><em>Yes, it is a press, certainly, but a press from which shall flow in inexhaustible streams, the most abundant and most marvelous liquor that has ever flowed to relieve the thirst of men.</em></p>\n<em>Johannes Gutenberg</em>\n</blockquote>\n<img src=\"https://i1.wp.com/ma.tt/files/2017/08/metalmovabletypeedit1.jpg?w=604&ssl=1\" />\n<p><em>Thank you to the <a href=\"https://wptavern.com/morten-rand-hendriksen-on-what-gutenberg-means-for-the-future-of-wordpress\">WP Tavern conversation</a> that helped me write down many of these ideas, and <a href=\"https://kingofstates.com/\">Michelle Weber</a>. This post started in Google Docs then revised in Gutenberg 0.9.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Aug 2017 02:23:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"HeroPress: HeroPress Downloads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2060\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://heropress.com/heropress-downloads/#utm_source=rss&utm_medium=rss&utm_campaign=heropress-downloads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2606:\"<img width=\"960\" height=\"600\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/heropress-large-grey-brick-1024x640.png\" class=\"attachment-large size-large wp-post-image\" alt=\"HeroPress logo on a grey brick wall\" /><p>Did you know that HeroPress has stuff you can download?  For a while now we&#8217;ve had a <a href=\"https://heropress.com/plugin/\">plugin</a> available, but this evening I posted some <a href=\"https://heropress.com/downloads/\">cool wallpapers</a>.  I made them about a year ago, but had them only on my personal site.</p>\n<p>Now they&#8217;re available on this site as well. I&#8217;m interested to know if you like them, if you&#8217;d like more, and perhaps even see what you can make.  Please let me know in the comments.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: HeroPress Downloads\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20Downloads&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-downloads%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress Downloads\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-downloads%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fheropress-downloads%2F&title=HeroPress+Downloads\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress Downloads\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/heropress-downloads/&media=https://heropress.com/wp-content/uploads/2017/08/heropress-large-grey-brick-150x150.png&description=HeroPress Downloads\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress Downloads\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-downloads/\" title=\"HeroPress Downloads\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-downloads/\">HeroPress Downloads</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Aug 2017 23:59:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Core Team Explores Idea to Automatically Upgrade Sites Running WordPress 3.7 to 3.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74408\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/core-team-explores-idea-to-automatically-upgrade-sites-running-wordpress-3-7-to-3-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2571:\"<p>WordPress 3.7 &#8216;Basie&#8217; <a href=\"https://wordpress.org/news/2013/10/basie/\">was released</a> on October 24, 2013 and introduced automatic updates for minor releases to the masses. Although it&#8217;s not labeled as such, WordPress 3.7 has effectively acted as a <a href=\"https://en.wikipedia.org/wiki/Long-term_support\">LTS version</a> or Long-term support. Security updates and crucial bug fixes have been <a href=\"https://wordpress.org/download/release-archive/\">ported back</a> to previous branches up to 3.7.</p>\n<p>In this week&#8217;s WordPress developer chat, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, WordPress core developer, <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1503519922000557\">asked</a> if it&#8217;s time to stop back porting fixes to 3.7-4.0 and instead, update those sites directly to 4.1.</p>\n<p>According to <a href=\"https://wordpress.org/about/stats/\">version statistics</a> on WordPress.org, 0.4% of tracked sites are using WordPress 3.7. &#8220;I would like to see a published proposal outlining reasons, usage data, and any tradeoffs/considerations and leave a bit of time for feedback before definitely doing this,&#8221; <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, Core contributor <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1503519968000494\">said</a>.</p>\n<p>&#8220;It’s unclear to me what are the things that <em>must</em> happen and what are the things that <em>should</em> happen before we take this step.&#8221;</p>\n<p>Developers noted that WordPress automatically updates minor versions and that if protections are not built-in to automatically upgrading major versions, it could cause users to lose trust in the system.</p>\n<p>&#8220;We need to make sure all users with outdated installs get warned one way or the other. Then if they decide to turn updates off&#8230;,&#8221; <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, Core developer <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1503520516000632\">said</a>.</p>\n<p>After further discussion, the team agreed that upgrading sites from 3.7 to 3.8 would be a good stepping stone towards getting those sites up to 4.1. &#8220;It can also be done in the API so that we only do a small percentage at first and then stop and analyze and then increase the percentage,&#8221; Jorbin said.</p>\n<p>A proposal will be crafted by members of the core team and published on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core</a> site for further discussion.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Aug 2017 21:20:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: Locating Restored Comments in WordPress Requires Detective Skills\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/locating-restored-comments-in-wordpress-requires-detective-skills\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1836:\"<p>Every now and then, I&#8217;ll come across a user experience in WordPress that makes me scratch my head. Earlier today, I needed to edit a comment&#8217;s details before restoring it from the Trash. However, WordPress doesn&#8217;t allow this without restoring it first.</p>\n<p>After restoring the comment, it disappeared from the trash and nothing happened. This is not the user experience I expected and needless to say, I was annoyed.</p>\n<p>Since restored comments do not appear at the top of the approved list because of their original published date, I searched the WordPress backend for comments by the author&#8217;s first name and found it after the sixth page of results.</p>\n<p>At first, I thought about how it would be nice to be able to edit a comment&#8217;s details while it&#8217;s in the trash so I don&#8217;t have to search for the post or author to edit it. However, Mika Epstein raised a good point.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Think of that like computers. You can’t edit a document in the trash.</p>\n<p>&mdash; ipstenu (((Mika E))) (@Ipstenu) <a href=\"https://twitter.com/Ipstenu/status/901152068534022144\">August 25, 2017</a></p></blockquote>\n<p></p>\n<p>The other idea is that after restoring a comment, WordPress redirects me to the post where it was restored. It would be even better if it took me directly to the comment in the discussions meta box. However, users can hide these meta boxes from view via Screen Options, so I&#8217;m not sure how to account for that. Perhaps redirecting users to the post is enough?</p>\n<p>After searching WordPress Trac and not finding a ticket related to this issue, <a href=\"https://core.trac.wordpress.org/ticket/41731\">I created one</a>. Please leave your feedback and suggestions either in the comments or on that Trac ticket.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Aug 2017 19:37:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: Playing the Role of Online Reputation Manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/playing-the-role-of-online-reputation-manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3505:\"<p>Over the years, I&#8217;ve received requests from people wanting their comments removed from the site. I recently received a request from a reader that I remove a comment they made three years ago because it was showing up in Google search results for their name.</p>\n<p>Normally, I ignore these requests as it makes me feel like I&#8217;m their online reputation manager. I asked my followers on Twitter what they would do if they received the same request.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">What are your terms of derive/ privacy policy? I probably wouldn’t delete but I would stop indexing comments.</p>\n<p>&mdash; Chris Wiegman (@ChrisWiegman) <a href=\"https://twitter.com/ChrisWiegman/status/900117231979421696\">August 22, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">yeah, probably. unless there’s a real good reason not to.</p>\n<p>that said, your comments shouldn’t be indexing</p>\n<p>&mdash; skin-covered coffee (@norcross) <a href=\"https://twitter.com/norcross/status/900112112395091968\">August 22, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">depends on context. if it\'s spam &#8211; happy to. if it\'s standalone maybe. if I have to adjust whole conversation around removal &#8211; probably not.</p>\n<p>&mdash; Andrey Savchenko (@Rarst) <a href=\"https://twitter.com/Rarst/status/900259136507711488\">August 23, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Depends. Is it essential for preserving that persons privacy? Had other people responded to the comment? I’d have to weigh pros &amp; cons.</p>\n<p>&mdash; Elpie (@elpie) <a href=\"https://twitter.com/elpie/status/900112216053231616\">August 22, 2017</a></p></blockquote>\n<p></p>\n<p>The Tavern doesn&#8217;t have a privacy policy. It&#8217;s a blog that allows commenting where readers can choose to provide their name, email address, and URL. I don&#8217;t like deleting comments as it alters history and can make conversations look awkward.</p>\n<p>Although there are privacy policies such as, the <a href=\"http://ec.europa.eu/justice/data-protection/files/factsheets/factsheet_data_protection_en.pdf\">Right To Be Forgotten</a> and <a href=\"http://www.eugdpr.org\">GDRP</a>, there are other things to consider that can help determine if removing a comment is the right thing to do.</p>\n<ol>\n<li>Is the comment spammy?</li>\n<li>Would removing it alter the conversation?</li>\n<li>Is removing the comment the only way to maintain their privacy?</li>\n</ol>\n<p>I initially decided to trash their comment but discovered that removing a parent comment with replies also removes the replies. While this makes sense, this means that removing one comment can turn into removing many comments or an entire conversation.</p>\n<p>Instead, I recovered the comment and removed their name, email address, and URL. This keeps the conversation in tact while giving back their privacy.</p>\n<p>Many people who responded to my question suggested that comments shouldn&#8217;t be indexed by search engines. After giving it some thought, I&#8217;m conflicted. We&#8217;ve never had an issue before and we don&#8217;t receive so many requests that it&#8217;s a problem. We also highly value our comments and feel they should be discoverable like our content.</p>\n<p>What are the pros and cons to blocking comments from search engines? What would you do if you were running the Tavern?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Aug 2017 21:12:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: WPWeekly Episode 286 – Upgrading PHP, Facebook Not Budging, and Merlin WP Onboarding Wizard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74394&preview=true&preview_id=74394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/wpweekly-episode-286-upgrading-php-facebook-not-budging-and-merlin-wp-onboarding-wizard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2477:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I discuss a new initiative that will help educate users on the benefits of upgrading PHP. We share our thoughts on Facebook denying a request to remove its Patent clause from REACT&#8217;s license. We highlight a new onboarding wizard aimed at themes and discuss what Gutenberg means for the future of WordPress.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-org-to-add-new-page-educating-users-on-benefits-of-upgrading-php\">WordPress.org to Add New Page Educating Users on Benefits of Upgrading PHP</a><br />\n<a href=\"https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license\">Facebook Isn’t Budging on React’s BSD + Patents License</a><br />\n<a href=\"https://wptavern.com/new-merlin-wp-onboarding-wizard-makes-wordpress-theme-installation-and-setup-effortless\">New Merlin WP Onboarding Wizard Makes WordPress Theme Installation and Setup Effortless</a><br />\n<a href=\"https://wptavern.com/user-experience-tests-show-gutenbergs-ui-elements-can-benefit-from-better-timing\">User Experience Tests Show Gutenberg’s UI Elements Can Benefit From Better Timing</a><br />\n<a href=\"https://wptavern.com/morten-rand-hendriksen-on-what-gutenberg-means-for-the-future-of-wordpress\">Morten Rand-Hendriksen on What Gutenberg Means For the Future of WordPress</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://github.com/nfarina/homebridge\">HomeBridge</a> is a lightweight NodeJS server you can run on your home network that emulates the iOS HomeKit API. It supports Plugins, which are community-contributed modules that provide a basic bridge from HomeKit to various 3rd-party APIs provided by manufacturers of &#8216;smart home&#8217; devices.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 30th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #286:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Aug 2017 00:12:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"HeroPress: Is WordPress Good for Indian Women?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://heropress.com/essays/wordpress-good-indian-women/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-good-indian-women\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12158:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/082317-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Nothing is better than a girl who writes code.\" /><p><a href=\"http://heropress.com/feed/#gujarati\">આ નિબંધ ગુજરાતીમાં પણ ઉપલબ્ધ છે</a></p>\n<p>Why has computing always been a boys’ club? I live in a society where women are not allowed to work in an office. People in my society think that all women have to do is take care of her family and stay at home. Narrow minded society. But I feel proud to say that I am not part of that narrow minded society.</p>\n<p>I am so engaged in the world of the Computer and Technology since school time. I started learning about basic computer languages HTML, CSS and C. And believe me I was so good at it! Later on I choose Computer Engineering for my further study and completed Bachelor of Computer Applications. But I didn’t stop studying after that. I completed my Masters in Computer Applications.</p>\n<p>I fell in love with the programming and working as freelancer. What is most interesting is that the platform I am associated with. WordPress! Everyday I woke up with a new task and go to sleep with a new idea. And that still goes on. I am a WordPress developer at the Elsner Technology and I am so proud of whatever work I do everyday.</p>\n<p>With WordPress it feels like home, a part of my soul. And hey! it’s not the house of boys, there are so many girls associated with WordPress. In case if you don’t know WordPress theme review team is led by women. And since my society is not filled with the open-minded people I suggest “Girls, why don’t you learn/work/code from home?” After all, all you need is just a computer and an internet connection. Right? There are billions of things that you can do with this platform and you don’t even need to pay a penny.</p>\n<p>WordPress is easy and designers like that. And who knows the better color combination and design better? You got the point. There are thousands of self-employed developers and designers using WordPress. In addition the rapid female created themes on platform can itself testify to the fact that women want to make websites too, and organizations like Women Who WP are so useful and makes the process more easy. WordPress is creating more and more for business owners and women are really good at tech businesses. And India is the house of the Startup business. Even the government is also making huge efforts behind it.</p>\n<p>The Internet is saturated with WordPress. 27 percent of the entire internet relies on WordPress. From small startup to gigantic companies. Since my society is willing to keep women in the house, I would like to say that’s great. I am okay! I can work from home. But there is no excuse to sit back and let the boys have all the fun. There are plenty of ways to get involved in the WordPress community. And nothing is better than a girl who writes code.</p>\n<hr />\n<h1 id=\"gujarati\">ભારતીય મહિલાઓ માટે વર્ડપ્રેસ સારું છે?</h1>\n<p>શા માટે કમ્પ્યુટિંગ હંમેશા &#8216;છોકરાઓ નું ક્લબ છે? હું એવા સમાજમાં રહુ છે જ્યાં સ્ત્રીઓને ઓફિસમાં કામ કરવાની મંજૂરી નથી. મારા સમાજના ઘણા લોકો એવું વિચારે છે કે બધી જ મહિલાઓએ તેના પરિવારની સંભાળ રાખવી અને ઘરમાં રહેવું. રૂઢિચુસ્ત મનનું સમાજ છે પરંતુ મને ગર્વ લાગે છે કે હું સાંકડા વિચારોવાળી સમાજનો ભાગ નથી.</p>\n<p>હું સ્કૂલના સમયથી કમ્પ્યુટર અને ટેકનોલોજીના વિશ્વ સાથે સંકળાયેલી છું. તે સમયે મેં કોમ્પ્યુટર ની ભાષાઓ એચટીએમએલ, સી.એસ.એસ. અને સી વિશે શીખવાનું શરૂ કર્યું. અને મારો વિશ્વાસ કરો હું તેના પર ઘણી સારી હતી. પછીથી મેં મારા આગળના અભ્યાસ માટે કમ્પ્યુટર એન્જિનિયરિંગ પસંદ કર્યું અને બેચલર ઓફ કમ્પ્યુટર એપ્લિકેશન્સમાં અભ્યાસ પૂર્ણ કર્યો. પરંતુ તે પછી મેં અભ્યાસ કરવાનું બંધ કર્યું નથી. મેં કમ્પ્યુટર એપ્લિકેશન્સમાં માસ્ટર્સ પૂર્ણ કર્યું.</p>\n<p>હું પ્રોગ્રામિંગમાં ખૂબ ખોવાયેલી રહેતી હતી અને સાથે ફ્રીલાન્સર તરીકે કામ કરતી હતી. સૌથી રસપ્રદ બાબત એ છે કે જે પ્લેટફોર્મ સાથે હું સંકળાયેલી છું તે વર્ડપ્રેસ છે. દરરોજ હું એક નવા કાર્ય સાથે જાગું છું અને નવા વિચાર સાથે સૂઈ જઉ છું. અને તે હજુ પણ ચાલુ છે. હું એલ્સ્નર ટેક્નોલોજીમાં વર્ડપ્રેસ ડેવલપર છું અને દરરોજ મેં જે કંઈ કર્યું છે તેના પર મને ગર્વ છે.</p>\n<p>વર્ડપ્રેસ સાથે ઘરની જેમ લાગે છે, મારા આત્માનો એક ભાગ. અને હા! તે છોકરાઓનું જ ઘર નથી, વર્ડપ્રેસ સાથે ઘણી સ્ત્રીઓ પણ સંકળાયેલી છે. એક વિષયમાં જો તમને ખબર ન હોય તો વર્ડપ્રેસ થીમની પરીક્ષણ ટીમની આગેવાની મહિલાઓ દ્વારા કરવામાં આવે છે. અને કારણ કે મારું સમાજ ખુલ્લા લોકોથી ભરેલું નથી તેથી હું સૂચવે છે કે, &#8220;સ્ત્રીઓ, તમે શા માટે ઘરેથી શિખવાનું/કામ કરવાનું /કોડ કરવાનું ચાલુ નથી કરતાં?&#8221; છેવટે, તમને જરૂર ફક્ત એક કમ્પ્યુટર અને ઇન્ટરનેટ કનેક્શનની છે. સાચું ને ? અબજો વસ્તુઓ છે કે જે તમે આ પ્લેટફોર્મ સાથે કરી શકો છો અને તમારે એક આની પણ ચૂકવવાની જરૂર નથી.</p>\n<p>વર્ડપ્રેસ સરળ છે અને ડિઝાઇનર્સ તેને પસંદ કરે છે . અને કોણ સારી રંગ સંયોજના જાણે છે અને વધુ સારી ડિઝાઇન કરે છે? તો તમને લહાવો મળ્યો. હજારો સ્વરોજગાર ડેવલોપર્સ અને ડિઝાઇનર્સ વર્ડપ્રેસ નો ઉપયોગ કરે છે. આ ઉપરાંત પ્લેટફોર્મ પર ઝડપી થીમ્સ સ્ત્રીઓ એ બનાવી છે જે સ્વયંને એ હકીકતનું સમર્થન આપે છે કે સ્ત્રીઓ વેબસાઇટ્સ પણ બનાવવા માંગે છે, અને સંસ્થાઓ જેમ કે Women Who WP ઘણી ઉપયોગી છે અને આ પ્રક્રિયાને વધુ સરળ બનાવે છે. વર્ડપ્રેસ બિઝનેસ માલિકો માટે વધુ અને વધુ બનાવી રહ્યું છે અને સ્ત્રીઓ ખરેખર ટેકનીકલમાં વ્યવસાયોમાં સારી છે. ભારત એક સ્ટાર્ટઅપ વ્યવસાયનું ઘર છે. સરકાર તેની પાછળ પણ વિશાળ પ્રયત્નો કરી રહી છે.</p>\n<p>ઇન્ટરનેટ વર્ડપ્રેસ સાથે સંતૃપ્ત છે સમગ્ર ઇન્ટરનેટનો 27% હિસ્સો વર્ડપ્રેસ પર છે. નાની શરૂઆત ની કંપની થી માંડી ને મોટી કંપીનીઓ . મારો સમાજ સ્ત્રીઓને ઘરમાં રાખવા માટે તૈયાર છે, તેથી હું કહીશ કે મહાન છે. હું ઠીક છું! હું ઘરેથી કામ કરી શકું છું પરંતુ પરંતુ પાછા બેસવાનો અને છોકરાઓને બધી જ મજા કરવાની કોઈ બહાનું નથી. વર્ડપ્રેસ કમ્યૂનિટીમાં શામેલ થવાની ઘણી બધી રીતો છે. અને જે છોકરી કોડ લખે છે તેના થી વધારે કંઈ સારું નથી.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Is WordPress Good for Indian Women?\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Is%20WordPress%20Good%20for%20Indian%20Women%3F&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-good-indian-women%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Is WordPress Good for Indian Women?\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-good-indian-women%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-good-indian-women%2F&title=Is+WordPress+Good+for+Indian+Women%3F\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Is WordPress Good for Indian Women?\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-good-indian-women/&media=https://heropress.com/wp-content/uploads/2017/08/082317-150x150.jpg&description=Is WordPress Good for Indian Women?\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Is WordPress Good for Indian Women?\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-good-indian-women/\" title=\"Is WordPress Good for Indian Women?\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-good-indian-women/\">Is WordPress Good for Indian Women?</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2017 12:00:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Juhi Patel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"BuddyPress: BuddyPress 2.9.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=267671\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://buddypress.org/2017/08/buddypress-2-9-1-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:944:\"<p>BuddyPress 2.9.1 is now available. This is a security and maintenance release. We strongly encourage all BuddyPress sites to upgrade as soon as possible.</p>\n<p>We fixed two regressions introduced in 2.9:</p>\n<ul>\n<li>Groups: fix group description truncation length on group screen.</li>\n<li>Profiles: fix avatar quality when requesting avatar sizes larger than the user&#8217;s uploaded avatar.</li>\n</ul>\n<p>Importantly, BuddyPress 2.9.1 and earlier versions were affected by the following security issue:</p>\n<ul>\n<li>Cross-site request forgery (CSRF) in the XProfile administration Dashboard panel.</li>\n</ul>\n<p>These vulnerabilities were reported privately by <a href=\"https://dk.linkedin.com/in/skansing\">Ronnie Skansing</a>. Our thanks to Ronnie for reporting security issues in accordance with <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPress&#8217; security policies</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2017 11:44:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Paul Gibbs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: Morten Rand-Hendriksen on What Gutenberg Means For the Future of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74359&preview=true&preview_id=74359\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/morten-rand-hendriksen-on-what-gutenberg-means-for-the-future-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2507:\"<p>As work continues on <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a>, members of the community are discussing its impacts on WordPress&#8217; future. Morten Rand-Hendriksen <a href=\"https://www.linkedin.com/pulse/gutenberg-morten-rand-hendriksen\">considers Gutenberg</a> to be a watershed moment, &#8220;This is a revolution,&#8221; he said.</p>\n<p>&#8220;This is a watershed moment for WordPress. This is entirely new and fundamentally different from how WordPress works and how we work with it today. I cannot overstate it enough when I say this changes everything.&#8221;</p>\n<p>Rand-Hendriksen suggests that Gutenberg will allow WordPress to graduate from being a blogging platform to a platform for managing views. If Gutenberg adds complexity to the user interface, he predicts many users will migrate to simpler, hosted publishing systems.</p>\n<p>He also predicts that due to the REST API and Gutenberg, permanent fractures may develop between different segments of the community and user base.</p>\n<p>It&#8217;s exciting to think about what could happen to WordPress and the web in general if Rand-Hendriksen&#8217;s optimism comes to fruition. &#8220;Whatever happens to WordPress’ user base, once Gutenberg is implemented fully, WordPress’ role in the wider web and internet community will change,&#8221; he said.</p>\n<p>&#8220;If all these things actually work, and people find them useful, WordPress will herald in a new age of UI and UX exploration. Applications have followed WordPress’ lead before and will do it again if the new solution works.&#8221;</p>\n<p>As for the future of WordPress, Rand-Hendriksen says:</p>\n<blockquote class=\"wp-block-quote blocks-quote-style-1\"><p>With the REST API in core and Gutenberg on the horizon, I am starting to see a new future for WordPress, one that looks nothing like where we are today. But this is true for the web as a whole as well.</p>\n<p>Non-pointer interactions, AR/VR/MR, AI, content beyond the screen, all these things are already within sight and the web as we know it is on the cusp of its own wave of revolutionary changes.</p>\n<p>The question I’m left to ponder is whether Gutenberg is what brings WordPress into that future.</p></blockquote>\n<p>I encourage you to <a href=\"https://www.linkedin.com/pulse/gutenberg-morten-rand-hendriksen\">read the entire post</a> as it provides a lot of food for thought. What do you think about his predictions and the impacts Gutenberg might have on the web as a whole?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Aug 2017 01:41:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Facebook Isn’t Budging on React’s BSD + Patents License\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74333\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/facebook-isnt-budging-on-reacts-bsd-patents-license\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7456:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/12/react.png?ssl=1\"><img /></a></p>\n<p>Last month <a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\" target=\"_blank\">React users petitioned Facebook to relicense the project</a> (and its other open source projects) after the Apache Software Foundation (ASF) added Facebook’s BSD+Patents license to its <a href=\"https://www.apache.org/legal/resolved#category-x\" target=\"_blank\">Category X list of disallowed licenses</a> for Apache PMC members. Participants and subscribers to the <a href=\"https://github.com/facebook/react/issues/10191\" target=\"_blank\">GitHub thread</a> waited weeks for a decision on re-licensing while Facebook&#8217;s engineering directors discussed the matter internally. The request has now formally been <a href=\"https://code.facebook.com/posts/112130496157735/explaining-react-s-license/\" target=\"_blank\">denied</a>.</p>\n<p>&#8220;I&#8217;d like to apologize for the amount of thrash, confusion, and uncertainty this has caused the React and open source communities,&#8221; Facebook engineer Adam Wolff said. &#8220;We know this is painful, especially for teams that feel like they&#8217;re going to need to rewrite large parts of their project to remove React or other dependencies. We&#8217;ve been looking for ways around this and have reached out to ASF to see if we could try to work with them, but have come up empty.&#8221;</p>\n<p>The request for re-licensing had received 851 &#8220;thumbs-up&#8221; reactions on GitHub and many developers commented to say that the ASF&#8217;s policy disallowing the BSD+Patents license <a href=\"https://wptavern.com/petition-to-re-license-react-has-been-escalated-to-facebooks-engineering-directors\" target=\"_blank\">affects their organizations&#8217; ability to continue using React</a> and other open source projects from Facebook. Others said they would like to use React but the licensing makes it impossible for their companies.</p>\n<h3>Facebook Cites &#8220;Meritless Patent Litigation&#8221; as the Reason Behind Adopting the BSD + Patents License</h3>\n<p>Wolff&#8217;s <a href=\"https://code.facebook.com/posts/112130496157735/explaining-react-s-license/\" target=\"_blank\">post</a> announcing Facebook&#8217;s decision said that the team has not done a good job of communicating the reasons behind its BSD + Patents license and offered a more in-depth explanation:</p>\n<blockquote><p>As our business has become successful, we&#8217;ve become a larger target for meritless patent litigation. This type of litigation can be extremely costly in terms of both resources and attention. It would have been easy for us to stop contributing to open source, or to do what some other large companies do and only release software that isn&#8217;t used in our most successful products, but we decided to take a different approach. We decided to add a clear patent grant when we release software under the 3-clause BSD license, creating what has come to be known as the BSD + Patents license. The patent grant says that if you&#8217;re going to use the software we&#8217;ve released under it, you lose the patent license from us if you sue us for patent infringement. We believe that if this license were widely adopted, it could actually reduce meritless litigation for all adopters, and we want to work with others to explore this possibility.</p></blockquote>\n<p>The ASF&#8217;s decision to disallow the BSD+Patents license was for policy reasons, not a legal decision based on incompatibility. Greg Stein, commenting on behalf of ASF on a separate GitHub issue, <a href=\"https://github.com/omcljs/om/issues/882\" target=\"_blank\">said</a> that the ASF didn&#8217;t want downstream users of Apache code to be surprised by the PATENTS grant that was previously in RocksDB and is still in React. The organization wanted users to have no further constraints other than following the ALv2.</p>\n<p>&#8220;While we respect this decision, it hurts to see so many great ASF projects get churned for policy reasons after using this license for years,&#8221; Wolff said in Facebook&#8217;s announcement. The company made it clear that they will not be re-licensing React or any other projects simply to satisfy ASF&#8217;s policy requirements.</p>\n<p>&#8220;We have considered possible changes carefully, but we won&#8217;t be changing our default license or React&#8217;s license at this time,&#8221; Wolff said. &#8220;We recognize that we may lose some React community members because of this decision. We are sorry for that, but we need to balance our desire to participate in open source with our desire to protect ourselves from costly litigation. We think changing our approach would inhibit our ability to continue releasing meaningful open source software and increase the amount of time and money we have to spend fighting meritless lawsuits.&#8221;</p>\n<p>Many from the OSS community expressed disappointment and frustration in their initial reactions on Twitter:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">“People like to sue us,” is a poor rationalization. This is weaponizing OSS under the guise of sharing. The whole post is disingenuous.</p>\n<p>&mdash; Nicholas C. Zakas (@slicknet) <a href=\"https://twitter.com/slicknet/status/898732045442011136\">August 19, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Facebook is often the ideal open source partner &#8211; but their patent stance here makes React use untenable to me. <a href=\"https://t.co/97VIR0le36\">https://t.co/97VIR0le36</a></p>\n<p>&mdash; Adam Jacob (@adamhjk) <a href=\"https://twitter.com/adamhjk/status/898734487718121472\">August 19, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">The React license allows Facebook to violate patents of companies that use React, and those companies can\'t sue to stop Facebook</p>\n<p>&mdash; Feross (@feross) <a href=\"https://twitter.com/feross/status/898730336082776064\">August 19, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Yep, my team\'s required to pull all use of React because of the license. It\'s a corporate wide issue.</p>\n<p>&mdash; Tyler Fitch (@tfitch) <a href=\"https://twitter.com/tfitch/status/898742063738494976\">August 19, 2017</a></p></blockquote>\n<p></p>\n<p>The issue requesting re-licensing has been <a href=\"https://github.com/facebook/react/issues/10191#issuecomment-323486580\" target=\"_blank\">closed on GitHub</a> and is now locked and limited to collaborators.</p>\n<p>It&#8217;s not clear how this decision will affect WordPress, as the project has yet to announce which JS framework it will be adopting for core. Automattic is heavily invested in React, having built Calypso and Jetpack&#8217;s admin interface with it. WordPress&#8217; new Gutenberg editor is also built using React, as the project&#8217;s chief contributors are employed by Automattic. The company&#8217;s legal counsel has said in the past that they are <a href=\"https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause\" target=\"_blank\">comfortable using React for its products under the current license</a>, but other companies in the WordPress ecosystem may not be as amenable to having the framework included in core.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Aug 2017 03:52:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WPTavern: WordPress.org to Add New Page Educating Users on Benefits of Upgrading PHP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/wordpress-org-to-add-new-page-educating-users-on-benefits-of-upgrading-php\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3456:\"<p>WordPress&#8217; Core PHP team has created a new <a href=\"https://github.com/wp-core-php\" target=\"_blank\">GitHub organization</a> for initiatives focused on improving the use of PHP in the project. The first one they are tackling is <a href=\"https://github.com/wp-core-php/servehappy/\" target=\"_blank\">a new page on WordPress.org</a> dedicated to educating users about the benefits of upgrading PHP. Contributors are <a href=\"https://github.com/wp-core-php/servehappy-resources\" target=\"_blank\">collecting third-party articles and tutorials on PHP upgrades</a> to find inspiration for the project, which is temporarily codenamed &#8220;servehappy.&#8221;</p>\n<p>WordPress&#8217; <a href=\"https://wordpress.org/about/stats/\" target=\"_blank\">stats</a> page shows that 14.2% of the all the sites it is tracking are running on PHP 7.0+. 40.6% of sites are on PHP 5.6, which is no longer actively supported but will receive security fixes until January 2019. This leaves 45.2% of all WordPress sites running on older, insecure PHP versions that have already reached end of life and are no longer receiving security updates.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/wp-php-versions-8-18-2017.png?ssl=1\"><img /></a>WordPress PHP Versions &#8211; 8.18.2017\n<p>Contributors are using the <a href=\"https://github.com/wp-core-php/servehappy/issues\" target=\"_blank\">issues queue of the servehappy repository</a> to collect benefits and statistical data they can use to sell the &#8220;update PHP&#8221; proposition to users. The project is currently in the brainstorming phase, but the team will eventually whittle the ideas down to present the most effective benefits.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/servehappy-issues-e1503086149333.png?ssl=1\"><img /></a></p>\n<p>&#8220;The primary task for the &#8216;servehappy&#8217; repository will be to open issues for the benefits we’ve come up with over the past few weeks, and discuss them one by one, whether they qualify for the page and how they can be framed in the most convincing way,&#8221; Felix Arntz said.</p>\n<p>In addition to proposing the benefits of upgrading PHP, the page will also include a call to action and information about how to upgrade or how to approach your host for an upgrade. Contributors are discussing the page&#8217;s outline and are aiming to tackle the project in a friendly and sensitive way that doesn&#8217;t put stress on users.</p>\n<p>&#8220;The section &#8216;<em>What should you need to know before doing an update?</em>&#8216; must not unnecessarily make the user worry,&#8221; Arntz said, recapping the thoughts contributors expressed during the team&#8217;s most recent meeting. &#8220;Let’s highlight possible issues, but not overestimate them. People should see upgrading as a good thing, and we should point them to how they can determine whether their sites are ready.&#8221;</p>\n<p>The Core PHP Team will be getting in touch with WordPress&#8217; marketing team to request their expertise on refining the page&#8217;s approach. Anyone is welcome to contribute third-party resources or ideas to the <a href=\"https://github.com/wp-core-php/servehappy\" target=\"_blank\">servehappy project on GitHub</a>. Check out the most recent <a href=\"https://make.wordpress.org/core/2017/08/17/php-meeting-recap-august-14th/\" target=\"_blank\">meeting notes</a> for a full summary of the project and its needs.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Aug 2017 20:37:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Chrome Version 62 to Show Security Warnings on HTTP Pages Starting in October 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74301\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/chrome-version-62-to-show-security-warnings-on-http-pages-starting-in-october-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2444:\"<p>Google Search Console has started sending out notices to sites that have not yet migrated to HTTPS. Chrome 61 is now in beta and version 62 is on track to begin marking HTTP pages as &#8220;NOT SECURE&#8221; beginning in October. It will show the warning if it detects any forms on the page that transmit passwords, credit cards, or any text input fields that the browser deems are in need of HTTPS protection. All HTTP pages in incognito mode will trigger the warning.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/chrome-warning.png?ssl=1\"><img /></a></p>\n<p>In January 2017, Chrome version 56 began marking sites that transmit passwords or credit cards as non-secure as part of its long-term plan to mark all HTTP sites as non-secure. The warning will become more prominent as time goes on.</p>\n<p>&#8220;Eventually, we plan to label all HTTP pages as non-secure, and change the HTTP security indicator to the red triangle that we use for broken HTTPS,&#8221; Chrome Security Team Emily Schechter said.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/eventual-chrome-warning-for-http-pages.png?ssl=1\"><img /></a></p>\n<p>The email sent out from the Google Search Console urges site owners to fix the problem by <a href=\"https://support.google.com/webmasters/answer/6073543?utm_source=wnc_10038795&utm_medium=gamma&utm_campaign=wnc_10038795&utm_content=msg_100078324&hl=en\" target=\"_blank\">migrating to HTTPS</a>. Hosting companies that specialize in WordPress are making it easier than ever to make the switch. Many of them have added Let’s Encrypt integration to offer free certificates to customers. As of 2017, WordPress now only recommends <a href=\"https://wptavern.com/wordpress-will-only-recommend-hosting-companies-offering-ssl-by-default-in-2017\" target=\"_blank\">hosting partners that provide SSL certificates by default</a>.</p>\n<p>Thanks to the push towards HTTPS from Google, web browsers, hosting companies, and the <a href=\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\" target=\"_blank\">100+ million certificates issued by Let&#8217;s Encrypt</a>, the <a href=\"https://ipv.sx/telemetry/general-v2.html?channels=release&measure=HTTP_PAGELOAD_IS_SSL&target=1&absolute=0&relative=1\" target=\"_blank\">percentage of pageloads over HTTPS is now approaching 60%</a>, according to Firefox Telemetry.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Aug 2017 17:14:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Lorelle on WP: WordPress School: Shortcodes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://lorelle.wordpress.com/?p=14325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://lorelle.wordpress.com/2017/08/18/wordpress-school-shortcodes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15281:\"<p><a href=\"https://lorelle.wordpress.com/category/wordpress/wordpress-school/\" title=\"WordPress School taught by Lorelle VanFossen.\"><img /></a></p>\n<p>WordPress shortcodes are abbreviated code placed into the WordPress Visual or Text Editors that expands into a larger code structure. As we continue with <a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle&#8217;s WordPress School free online course</a>, it&#8217;s time to explore the basics of WordPress shortcodes.</p>\n<p>The following is the embed code for a Google Map, pointing to one of my favorite local museums, <a href=\"http://ricenorthwestmuseum.com/\">The Rice Northwest Rocks and Minerals Museum</a> in Hillsboro, Oregon:</p>\n<p><code>&lt;a href=\"https&#058;&#047;&#047;www&#046;google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052\"&gt;https&#058;&#047;&#047;www&#046;google.com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052&lt;/a&gt;</code></p>\n<p>When the post or Page is saved, WordPress.com automatically converts it to the embed code for Google Maps like this:</p>\n<p><code>&#091;googlemaps https&#058;&#047;&#047;www&#046;google&#046;com/maps/embed?pb=!1m18!1m12!1m3!1d2792.809130780463!2d-122.94987648443889!3d45.57427677910247!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x54950456e76e254b%3A0xdfad5d11bde5b6cc!2s26385+NW+Groveland+Dr%2C+Hillsboro%2C+OR+97124!5e0!3m2!1sen!2sus!4v1502560000052&amp;w=600&amp;h=450]</code></p>\n<p>This is what you see in your Visual or Text/HTML editors. Doesn&#8217;t look like a map, yet, does it? </p>\n<p>When the post is previewed or published, you will see the map like this:</p>\n<div class=\"googlemaps\"></div>\n<p>The map is not a screenshot. It is interactive. Zoom in and out and move around on the map. The <a href=\"https://en.support.wordpress.com/google-maps/\" title=\"Google Maps — Support — WordPress.com\">Google Maps shortcode</a> taps into the Google Maps API allowing a live section of the map to be embedded on your site to help people find locations and directions. </p>\n<p>Google Maps are a great way of providing instructions to the location of a store or company on a Contact web page. They are also fun to embed in a post about a favorite park, hike, fishing hole, vacation spot, or even create a custom map that charts your travels, hikes, or a specific route for shopping or exploring. </p>\n<p><strong>NOTE:</strong> <em>Google Map embeds are tricky. You need to search for the exact address and use that embed code. If you search for a business name, you may get an invalid server request from Google Maps. Also note that WordPress.com has made it easier to use shortcodes by skipping the extra code and converting links and embed codes automatically to shortcodes. This may require saving your post as a draft twice before you can see the results on the front end preview of the post or Page.</em></p>\n<p>Shortcodes allow the user to add content and functionality to a WordPress site without knowing extensive code or digging into the programming of a WordPress Theme or Plugin. With the shortcut of a shortcode, WordPress users may add all sorts of customization features to their site.</p>\n<p>There are a variety of shortcodes in the core of WordPress. WordPress Themes have the ability to enable or disable these, and add more, as do WordPress Plugins.</p>\n<p>Let&#8217;s experiment with the <a title=\"Archives Shortcode &mdash; Support &mdash; WordPress.com\" href=\"http://en.support.wordpress.com/archives-shortcode/\">Archives Shortcode</a>.</p>\n<ol>\n<li>Add a New Page to your site. Title it &#8220;Site Map&#8221; or &#8220;Archives.&#8221;</li>\n<li>Type in <code>&#091;archives]</code>.</li>\n<li>Preview, then publish the post when ready to see a listing of all of the published posts on your site in a list.</li>\n</ol>\n<p>Check out my <a href=\"https://lorelle.wordpress.com/site-map/\" title=\"Site Map « Lorelle on WordPress\">site map</a> as an example of what&#8217;s possible. </p>\n<h3>What You Need to Know About WordPress Shortcodes</h3>\n<p>Shortcodes come with WordPress out of the box, and also with WordPress Themes and Plugins. These snippets of code allow the user to add functionality to their site without touching the code. </p>\n<p>The PHP code that enables the functionality, and adds the ability to use the abbreviated code to generate that functionality on the site, is called a <code>function</code>. </p>\n<p>At its core, this is the function found to generate all WordPress Shortcodes:</p>\n<pre class=\"brush: xml; title: ; notranslate\">//[foobar]\nfunction foobar_func( $atts ){\n	return \"foo and bar\";\n}\nadd_shortcode( \'foobar\', \'foobar_func\' );</pre>\n<p>The attributes, represented in this abbreviated version by <code>$atts</code>, are the instructions as to what the shortcode is to do.</p>\n<p>In the expanded form with functionality, I&#8217;ve called the shortcode &#8220;elephant&#8221; and set up two attribute values, &#8220;trumpet loudly&#8221; and &#8220;stomp.&#8221; </p>\n<pre class=\"brush: xml; title: ; notranslate\">// [elephant foo=\"foo-value\"]\nfunction elephant_func( $atts ) {\n    $a = shortcode_atts( array(\n        \'foo\' =&gt; \'trumpet loudly\',\n        \'bar\' =&gt; \'stomp\',\n    ), $atts );\n\n    return \"foo = {$a[\'foo\']}\";\n}\nadd_shortcode( \'elephant\', \'elephant_func\' );</pre>\n<p>Depending upon what &#8220;foo&#8221; and &#8220;bar&#8221; represent, the results would be &#8220;trumpet loudly&#8221; and &#8220;stomp.&#8221; What these represent are HTML code, modifications to HTML code, and initiates the programming such as generating a list of all the posts you&#8217;ve published as an archive list.</p>\n<p>Right now, you aren&#8217;t at the stage where you can program shortcodes and add them to WordPress Themes or create WordPress Plugins, so I&#8217;m not going to dive into these much deeper. You need to learn how these work and how to use them on your site, and the more you use them, the better feel you will have for what a shortcode can do on your site. </p>\n<p>WordPress.com offers a <a href=\"https://en.support.wordpress.com/category/shortcodes/\" title=\"Support — WordPress.com\">wide range of shortcodes</a> to add functionality to your site. To learn about how to use these, see <a title=\"Shortcodes &mdash; Support &mdash; WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">Shortcodes &mdash; Support</a>. </p>\n<p>Here are some examples of shortcodes to experiment with on WordPress.com.</p>\n<ul>\n<li><a href=\"https://en.support.wordpress.com/videos/youtube/\" title=\"YouTube — Support — WordPress.com\">YouTube Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/audio/\" title=\"Audio — Support — WordPress.com\">Audio Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/soundcloud-audio-player/\">SoundCloud Audio Player Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/gallery/\" title=\"Galleries and Slideshows — Support — WordPress.com\">Galleries and Slideshows Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/instagram/\" title=\"Instagram — Support — WordPress.com\">Instagram Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/archives-shortcode/\" title=\"Create an Archive using the Archives Shortcode — Support — WordPress.com\">Archives Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/blog-subscription-shortcode/\" title=\"Blog Subscription Shortcode — Support — WordPress.com\">Blog Subscription Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/forms/contact-form/\" title=\"Contact Form — Support — WordPress.com\">Contact Form Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/google-maps/\" title=\"Google Maps — Support — WordPress.com\">Google Maps Shortcode</a></li>\n<li><a href=\"https://en.support.wordpress.com/recipes/\" title=\"Recipes — Support — WordPress.com\">Recipes Shortcode</a></li>\n</ul>\n<h4>More Information on WordPress Shortcodes</h4>\n<ul>\n<li><a title=\"Shortcodes &mdash; Support &mdash; WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">Shortcodes &#8211; Support &#8211; WordPress.com</a></li>\n<li><a title=\"Shortcodes &mdash; Support &mdash; WordPress.com\" href=\"http://en.support.wordpress.com/shortcodes/\">List of Shortcodes available for WordPress.com sites</a></li>\n<li><a title=\"Shortcode &laquo; WordPress Codex\" href=\"http://codex.wordpress.org/Shortcode\">Shortcode &#8211; WordPress Codex</a></li>\n<li><a title=\"Support &mdash; WordPress.com\" href=\"http://en.support.wordpress.com/category/shortcodes/\">Shortcodes for WordPress.com</a></li>\n<li><a title=\"Gallery Shortcode &laquo; WordPress Codex\" href=\"http://codex.wordpress.org/Gallery_Shortcode\">Gallery Shortcode &#8211; WordPress Codex</a></li>\n<li><a href=\"https://www.smashingmagazine.com/2012/05/wordpress-shortcodes-complete-guide/\" title=\"WordPress Shortcodes: A Complete Guide – Smashing Magazine\">WordPress Shortcodes: A Complete Guide – Smashing Magazine</a></li>\n<li><a href=\"http://www.wpbeginner.com/wp-tutorials/how-to-add-a-shortcode-in-wordpress/\" title=\"How to Add A Shortcode in WordPress?\">How to Add A Shortcode in WordPress? &#8211; WPBeginner</a></li>\n<li><a href=\"http://www.wpbeginner.com/beginners-guide/7-essential-tips-for-using-shortcodes-in-wordpress/\" title=\"7 Essential Tips for Using Shortcodes in WordPress\">7 Essential Tips for Using Shortcodes in WordPress &#8211; WPBeginner</a></li>\n<li><a href=\"https://code.tutsplus.com/articles/getting-started-with-wordpress-shortcodes--wp-21197\" title=\"Getting Started With WordPress Shortcodes\">Getting Started With WordPress Shortcodes &#8211; Envatotuts+</a></li>\n</ul>\n<h3>Assignment</h3>\n<p><img />Your assignment in these WordPress School exercises is to experiment with WordPress shortcodes, specifically the ones available on WordPress.com. </p>\n<p>I&#8217;ve listed some examples of shortcodes on WordPress.com above, and you may find more in the <a href=\"https://en.support.wordpress.com/category/shortcodes/\" title=\"Support — WordPress.com\">WordPress.com list of Shortcodes</a>.</p>\n<p>Your assignment is to use shortcodes to add features to your site. </p>\n<ul>\n<li>Create a Page called &#8220;Site Map&#8221; or &#8220;Archives&#8221; and add an archive list shortcode.</li>\n<li>Add a Google Map to a post or Page using the Google Maps shortcode.</li>\n<li>Add a gallery to a post or Page with the gallery shortcode, testing the various options (parameters) to get the look and feel you like best.</li>\n<li>Add a recipe to a post using the recipe shortcode.</li>\n<li>Find another shortcode with a variety of features to experiment with. See how many ways you can change the look and feel of the content. If you wish, blog about your discoveries with screenshots or examples in the post. Let us know about it in the comments below so we can come inspect your work.</li>\n</ul>\n<p><em>This is a tutorial from <a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle&#8217;s WordPress School</a>. For more information, and to join this free, year-long, online WordPress School, see:</em></p>\n<ul>\n<li><a href=\"https://lorelle.wordpress.com/2015/01/24/welcome-to-lorelles-wordpress-school/\" title=\"Welcome to Lorelle’s WordPress School « Lorelle on WordPress\">Lorelle&#8217;s WordPress School Introduction</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/\" title=\"WordPress School « Lorelle on WordPress\">Lorelle&#8217;s WordPress School Description</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/tutorials/\" title=\"Tutorials « Lorelle on WordPress\">WordPress School Tutorials List</a></li>\n<li><a href=\"https://plus.google.com/u/0/communities/115251582756616355670\" title=\"WordPress School Google+ Community\">WordPress School Google+ Community</a></li>\n<li><a href=\"https://lorelle.wordpress.com/2015/01/12/wordpress-publishing-checklist/\" title=\"WordPress Publishing Checklist\">WordPress Publishing Checklist</a></li>\n<li><a href=\"https://lorelle.wordpress.com/classes-and-workshops/wordpress-school/feedback-and-criticism/\" title=\"How to Give Feedback and Criticism - Lorelle\'s WordPress School.\">How to Give Feedback and Criticism</a></li>\n</ul>\n<div class=\"sig\">\n<p><img src=\"https://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /></p>\n<hr /> </div><br />Filed under: <a href=\"https://lorelle.wordpress.com/category/wordpress/\">WordPress</a>, <a href=\"https://lorelle.wordpress.com/category/wordpress/wordpress-school-wordpress/\">WordPress School</a> Tagged: <a href=\"https://lorelle.wordpress.com/tag/learn-wordpress/\">learn wordpress</a>, <a href=\"https://lorelle.wordpress.com/tag/shortcodes/\">shortcodes</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-2/\">wordpress</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-guide/\">wordpress guide</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-help/\">wordpress help</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-news/\">WordPress News</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-school/\">wordpress school</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-shortcodes/\">wordpress shortcodes</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-tips/\">WordPress Tips</a>, <a href=\"https://lorelle.wordpress.com/tag/wordpress-tutorials/\">wordpress tutorials</a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/14325/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/14325/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/14325/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=lorelle.wordpress.com&blog=72&post=14325&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Aug 2017 11:02:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: New Merlin WP Onboarding Wizard Makes WordPress Theme Installation and Setup Effortless\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74230\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/new-merlin-wp-onboarding-wizard-makes-wordpress-theme-installation-and-setup-effortless\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5189:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/merlin-wp.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://themebeans.com/\" target=\"_blank\">ThemeBeans</a> founder Rich Tabor released <a href=\"https://richtabor.com/merlin-wp/\" target=\"_blank\">Merlin WP</a> on <a href=\"https://github.com/richtabor/MerlinWP\" target=\"_blank\">GitHub</a> in public beta this week. The project provides a beautiful experience for installing and setting up WordPress themes with all of their plugin dependencies, Customizer settings, widgets, demo content, and more.</p>\n<p>&#8220;I was inspired by David Baker’s <a href=\"https://github.com/dtbaker/envato-wp-theme-setup-wizard\" target=\"_blank\">Envato Theme Setup Wizard</a> and was working to add it to my own themes but pivoted after realizing I was just putting a band-aid on the onboarding issues surrounding themes in particular,&#8221; Tabor said. &#8220;It wasn’t a particularly grand experience and didn’t take care of the essentials the way I was looking for.&#8221;</p>\n<p>Tabor said he wanted to make the onboarding experience much friendlier than what WordPress products are typically known for and needed a way to get his customers started on the right foot.</p>\n<p>&#8220;Over the years I’ve had countless &#8216;how do I get this page like your demo&#8217; and &#8216;where do I even start&#8217; questions — and my themes aren’t even particularly confusing/difficult to use.&#8221; Tabor said.</p>\n<p>Ordinarily, users have to hop from screen to screen to install a theme, recommended plugins, and apply Customizer settings. Even an experienced WordPress user often has to refer to documentation to get a theme set up with the right customizations to match the demo. The video below shows an example of Merlin WP in action as it guides a user through setting up <a href=\"https://themebeans.com/themes/york-pro\" target=\"_blank\">York Pro</a>, a fork of one of ThemeBeans&#8217; commercial themes that is included in Merlin WP&#8217;s GitHub repo.</p>\n<div class=\"embed-vimeo\"></div>\n<p>Merlin WP makes the process of setting up a theme nearly effortless for users. It also leaves less room for error or confusion.</p>\n<p>Developers can add Merlin WP directly to their theme files. It includes a configuration file that allows for customization of any text string in the wizard. Theme developers add the Merlin class (merlin/merlin.php) and the merlin-config.php file, along with any demo content (included in the demo directory location specified in the merlin-config.php file):</p>\n<ul>\n<li><strong>content.xml</strong> — Exported demo content using the WordPress Exporter</li>\n<li><strong>widgets.wie</strong> — Exported widgets using Widget Importer and Exporter</li>\n<li><strong>customizer.dat</strong> — Exported Customizer settings using Customizer Export/Import</li>\n</ul>\n<p>Merlin WP was also developed to work seamlessly with <a href=\"http://tgmpluginactivation.com/\" target=\"_blank\">TGMPA</a>, a PHP library that many WordPress developers use to require or recommend plugins for their themes and plugins. It will automatically pull the recommended plugins into the wizard.</p>\n<p>Tabor said his targeted distribution channel is commercial themes, though he believes Merlin WP could also be useful for themes hosted on WordPress.org.</p>\n<p>&#8220;I’m honestly not sure if it would be allowed,&#8221; Tabor said. &#8220;I guess that’s where getting more eyes on the project and more input from the Theme Review team comes in handy. I have had a lot of feedback from authors who are eventually considering adding Merlin WP as an &#8216;up-sell feature&#8217; for their lite offerings currently on .org.&#8221;</p>\n<p>Tabor estimates that Merlin WP will be in beta for another two weeks. There are a few issues he wants to resolve before bringing it out of beta. He is testing the wizard in his own products at ThemeBeans, which is what he built it for originally. The shop has more than 40,000 customers and Tabor plans to push the wizard live across his entire theme collection once the last few issues are resolved.</p>\n<p>Merlin WP is GPL-licensed and <a href=\"https://github.com/richtabor/MerlinWP\" target=\"_blank\">available on GitHub</a> for any developer to use in open source projects. Tabor said he is considering creating a pro version but is not currently interested in pursuing an add-on model.</p>\n<p>&#8220;I&#8217;m considering having an advanced version, with different developer-level capabilities, such as EDD Software Licensing support (where theme users can enter their license key issued from the developer in the onboarding process),&#8221; Tabor said.</p>\n<p>Tabor anticipates one of the main benefits for theme shops using Merlin WP will be a decreased support load where questions about initial setup and &#8220;how do I do this like the demo&#8221; become less common.</p>\n<p>&#8220;Customers will have what they’ve purchased right off the bat (instead of installing plugins, installing a child theme, importing content, setting menus, widgets, etc),&#8221; Tabor said. &#8220;They will likely appreciate the ease-of-use and share that experience with others.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Aug 2017 01:19:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Post Status: Building a healthy remote company, with Tom Willmot — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=38655\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://poststatus.com/building-healthy-remote-company-tom-willmot-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1876:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard.</p>\n<p>In this episode, Brian is joined by Tom Willmot, the CEO of Human Made. Human Made recently released <a href=\"https://handbook.hmn.md/\">an employee handbook</a> as an open source document for anyone to use, copy, or learn from. Tom and Brian discuss several elements of the handbook, and how they approach these things at Human Made:</p>\n<ul>\n<li>Employee onboarding</li>\n<li>Remote work processes</li>\n<li>Communication</li>\n<li>Employee feedback and mentorship</li>\n<li>HR policies</li>\n<li>And more!</li>\n</ul>\n<p>This was a fun episode. Human Made has some of the lowest turnover in our industry and it was educational to hear from Tom.</p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/a0dd5349.mp3\">https://audio.simplecast.com/a0dd5349.mp3</a>\n<p><a href=\"https://audio.simplecast.com/a0dd5349.mp3\">Direct Download</a></p>\n<h3>Sponsor: OptinMonster</h3>\n<p><a href=\"http://optinmonster.com\">OptinMonster</a> allows you to convert visitors into subscribers. You can easily create &amp; A/B test beautiful lead capture forms without a developer. Be sure to check out their new <a href=\"http://optinmonster.com/announcing-the-inactivitysensor-activity-logs-and-more/\">Inactivity Sensor</a> technology.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Aug 2017 01:19:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: User Experience Tests Show Gutenberg’s UI Elements Can Benefit From Better Timing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/user-experience-tests-show-gutenbergs-ui-elements-can-benefit-from-better-timing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2703:\"<p>Over the past few months, <a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\">reviews for Gutenberg</a> have trended towards a love/hate relationship without much in between. To figure out why this is, Millie Macdonald and Anna Harrison of Ephox, the company behind TinyMCE, <a href=\"https://go.tinymce.com/blog/gutenberg-editor-success-lies-timing/\">analyzed the feedback</a> and concluded that many of the issues likely stem from timing.</p>\n<p>&#8220;In short, the nuances in the micro-interactions and timing of UI elements in Gutenberg are a little out of sync with what the user is doing at a point in time,&#8221; Harrison said. &#8220;For example, a user typing in a new paragraph is distracted when the decoration of the previous paragraph turns on.&#8221;</p>\n<p>A common piece of feedback is that Gutenberg&#8217;s UI is clean but also cluttered. Harrison recorded a video of users copying and pasting paragraphs into Gutenberg and Medium.</p>\n<p>In the video, toolbars and UI elements are displayed in Gutenberg during the writing process creating a cluttered look and disrupting the writing flow. In Medium, the formatting toolbar doesn&#8217;t display until text is highlighted and the + symbol disappears if it&#8217;s not interacted with.</p>\n<p></p>\n<p>Based on user testing, Harrison suggests refining the timing of when visual elements pop up in Gutenberg. &#8220;Right now, menus pop up when we are trying to type,&#8221; Harrison said. &#8220;They ought to pop up when we are trying to do something to words that have already been typed.&#8221;</p>\n<p>Harrison <a href=\"https://github.com/WordPress/gutenberg/issues/2279\">presented their findings</a> and suggestions to Gutenberg&#8217;s development team. Tammie Lister, design lead for Gutenberg, <a href=\"https://github.com/WordPress/gutenberg/issues/2279#issuecomment-321379994\">agreed</a> that getting micro-transactions right is important. &#8220;I see this as the type of refinement post version 0.9/1 can bring,&#8221; Lister said.</p>\n<p>&#8220;A few things I am slightly obsessed with is having an animation pace, story and consistency to interactions. Just something to throw in when looking at micro-interactions. I&#8217;ve also been doing some self thinking about what the &#8216;feel&#8217; of emotion of Gutenberg should be. The one I keep coming back to is &#8216;calm&#8217; and &#8216;supporting&#8217;. Just another thing to throw in when looking at these smaller details.&#8221;</p>\n<p>Developers thanked Harrison and Macdonald for collecting, analyzing, and sharing data with the team. Does Gutenberg feel heavy to you? Let us know what your experience is like writing content in Gutenberg.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Aug 2017 23:06:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: WordPress Support Team to Host Free Workshop August 23 on Supporting Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/wordpress-support-team-to-host-free-workshop-august-23-on-supporting-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3074:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/colored-pencils.jpg?ssl=1\"><img /></a></p>\n<p>Over the past few months the WordPress Support Team has been brainstorming ways to improve support across various aspects of the community. One new idea they are pursuing is <a href=\"https://make.wordpress.org/support/2017/07/the-developers-guide-to-supporting-your-themes-a-support-workshop/\" target=\"_blank\">hosting workshops</a> where WordPress.org theme and plugin authors can present how they approach supporting their free, open source products that have been released to the community.</p>\n<p>Some users approach WordPress.org plugins and themes with realistic expectations regarding the support they might receive on tickets. Others approach these free products as if they were all built with large teams of professional support behind them, which is rarely the case. This often results in frustration, one-star reviews, and ultimately a bad reputation for products hosted in the official directories. It is also one of the primary reasons developers forgo putting products on WordPress.org and simply opt to host them on GitHub.</p>\n<p>The new workshops will offer concrete strategies for bridging the chasm of expectation regarding support that exists between developers and users. WordPress.org theme and plugin authors will share the tools and ideas they have implemented to offer support while creating a positive experience for everyone involved.</p>\n<p><a href=\"https://kpresner.com/\" target=\"_blank\">Kathryn Presner</a>, who supports hundreds of themes at Automattic, will be leading the first workshop titled &#8220;The Developers Guide to Supporting Your Themes:&#8221;</p>\n<blockquote><p>Providing support for your themes offers tremendous opportunities to educate WordPress users, from explaining how to make a child theme to offering simple CSS customisations. It also presents challenges, like figuring out how to help people who aren’t tech-savvy or need support beyond the scope of what you can provide. While many developers dread doing support, with some concrete strategies and techniques in hand, helping users doesn’t have to be a chore – and can even be fun! This session looks at how to make your themes’ users happy while feeling a sense of satisfaction from your own support efforts – a winning combination in the world of theme development.</p></blockquote>\n<p>WordPress.org theme authors will want to mark their calendars for <a href=\"http://www.timeanddate.com/worldclock/fixedtime.html?iso=20170823T1600\" target=\"_blank\">Wednesday, August 23 at 11 AM CDT</a>. The workshop will be broadcast live as a Zoom teleconference and will last for an hour, including time for a Q&amp;A at the end. Zoom can <a href=\"https://support.zoom.us/hc/en-us/articles/201362023-System-Requirements-for-PC-Mac-and-Linux\" target=\"_blank\">run on desktop</a> and also offers <a href=\"https://zoom.us/download\" target=\"_blank\">apps for mobile devices</a>. The session will be recorded and available on WordPress.tv at a later date.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Aug 2017 19:19:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: WPWeekly Episode 285 – Not Every WordPress Is the Same\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74233&preview=true&preview_id=74233\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wpweekly-episode-285-not-every-wordpress-is-the-same\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2894:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I open the show by discussing our observations of social media lately. Our feeds are filled with anger and for me personally, Twitter is becoming less useful.</p>\n<p>We discussed the news of the week, including a lengthy conversation about Automattic opening up the WordPress.org ecosystem of plugins and themes to Business plan customers. Near the end of the episode, we share the features we&#8217;d like to see in a syntax highlighter for the built-in plugin and theme editors.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-foundation-to-sponsor-open-source-educational-events\">WordPress Foundation to Sponsor Open Source Educational Events</a></p>\n<p><a href=\"https://wptavern.com/woocommerce-forks-select2-releases-selectwoo-as-a-drop-in-replacement-with-improved-accessibility\">WooCommerce Forks select2, Releases selectWoo as a Drop-In Replacement with Improved Accessibility</a></p>\n<p><a href=\"https://wptavern.com/gutenberg-0-8-0-introduces-5-new-blocks-categories-text-columns-shortcode-audio-and-video\">Gutenberg 0.8.0 Introduces 5 New Blocks: Categories, Text Columns, Shortcode, Audio, and Video</a></p>\n<p><a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\">WordPress.com’s Business Plan Gives Subscribers a Way to Tap into WordPress.org’s Third-party Ecosystem</a></p>\n<p><a href=\"https://wptavern.com/wordpress-4-9-to-focus-on-code-editing-and-customization-improvements-targeted-for-november-14\">WordPress 4.9 to Focus on Code Editing and Customization Improvements, Targeted for November 14</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wpisnotwp.com/\">WPisNotWP</a> by Caspar Hübinger, is a tiny progressive web app that outlines the differences between WordPress the open-source project and WordPress.com. Contributions to the app can be made on the <a href=\"https://github.com/glueckpress/wpistnotwp.com\">project&#8217;s GitHub page</a>.</p>\n<p>A deep dive into the WordPress user roles and capabilities API by John Blackbourn.</p>\n<div class=\"embed-wrap\"></div>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 23rd 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #285:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Aug 2017 23:55:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Gravity Forms Stop Entries Plugin Aims to Help Sites Comply with the EU’s GDPR\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74189\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/gravity-forms-stop-entries-plugin-aims-to-help-sites-comply-with-the-eus-gdpr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10232:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/steaming-mailbox.png?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/NRB5T25KRG\">AJ Montpetit</a>\n<p><a href=\"https://wordpress.org/plugins/wider-gravity-forms-stop-entries/\" target=\"_blank\">Wider Gravity Forms Stop Entries</a> is a new plugin that helps website owners protect the privacy of form submissions by preventing entries from being stored in the database. The plugin was created by UK-based web developer <a href=\"https://jonnya.net/\" target=\"_blank\">Jonny Allbut</a> for internal use at <a href=\"https://wider.co.uk/\" target=\"_blank\">Wider</a>, a company he set up for handling WordPress clients&#8217; needs.</p>\n<p>One aspect of complying with the EU&#8217;s <a href=\"http://www.eugdpr.org/\" target=\"_blank\">General Data Protection Regulation</a> (GDPR) is ensuring that contact forms do not store any personally identifiable data on the server. The regulation becomes enforceable in May 2018 and sites that serve EU citizens are preparing for the deadline with audits and changes to how they handle privacy.</p>\n<p><a href=\"http://www.gravityforms.com/\" target=\"_blank\">Gravity Forms</a> doesn&#8217;t offer a built-in option to stop entries from being stored on the server but GF co-founder Carl Hancock says there are a variety of ways to accomplish this.</p>\n<p>&#8220;If all you want to do is simply email the contents of the form and not store the data in the database as part of the route you&#8217;d like to take for GDPR compliance, this plugin would be one method of doing so,&#8221; Hancock said. He also referenced Gravity Wiz&#8217;s commercial <a href=\"https://gravitywiz.com/documentation/gravity-forms-disable-entry-creation/\" target=\"_blank\">Disable Entry Creation</a> plugin. Developers can also <a href=\"https://www.gravityhelp.com/documentation/article/delete-entry-data-after-submission/\" target=\"_blank\">delete entry data after submission</a> via a hook.</p>\n<p>&#8220;However, the GDPR doesn&#8217;t preclude storing form entries in a database and is entirely dependent on the type of data you are storing and the other safeguards and functionality you have put in place,&#8221; Hancock said. &#8220;It&#8217;s a complex issue and I&#8217;m not entirely sure the EU fully understands the burden and implications that may come with it.&#8221;</p>\n<p>Ultimately, the requirement of compliance falls upon website administrators who are the ones collecting the data. It is their responsibility to select tools that will protect their users&#8217; privacy.</p>\n<p>&#8220;While it won’t provide GDPR compliance on its own, Jonny’s extension is a much-needed step in the right direction,&#8221; digital law specialist <a href=\"https://webdevlaw.uk\" target=\"_blank\">Heather Burns</a> said. Burns consults with companies that need assistance in getting their sites GDPR compliant. &#8220;GDPR requires adherence to the <a href=\"https://www.smashingmagazine.com/2017/07/privacy-by-design-framework/\" target=\"_blank\">principles of privacy by design</a> and part of that is data minimization and deletion.&#8221;</p>\n<p>WordPress has dozens of popular contact form plugins, both free and commercial. Many of them store entries in the database in case the recipient&#8217;s email has problems, preventing the communication from becoming lost. Site administrators who are concerned about GDPR compliance will want to examine the solution they have selected for forms. Burns advised that contact form plugins need to do the following three things:</p>\n<ul>\n<li>Ensure that personal and sensitive personal data from form entries is not stored in the database;</li>\n<li>Provide configuration options to allow contact form entries to be automatically deleted after a certain period of time;</li>\n<li>Ensure that all contact form data is deleted when the plugin is deactivated or deleted.</li>\n</ul>\n<p>&#8220;Unfortunately the direction of travel has been the exact opposite: contact form entries tend to be stored in perpetuity on the database regardless of content or necessity,&#8221; Burns said. &#8220;Contact form plugins with options to automatically delete form submissions after a certain period of time are rare. I&#8217;ve even seen contact form extensions which duplicate entries to a separate table, which, all things considered, is madness. We need to be developing towards data minimization and deletion, not retention and duplication.&#8221;</p>\n<p>Last month JJ Jay <a href=\"https://tharshetests.wordpress.com/2017/06/19/wp-contact-form-remnants/\" target=\"_blank\">published</a> an analysis of how and where popular WordPress contact forms plugins store data. This is a useful reference for site administrators who are not sure how their chosen solution handles data collection and storage. She suggested a few questions for users to ask when examining contact forms:</p>\n<ul>\n<li>Can the option to store data be turned on and off?</li>\n<li>At what granularity?</li>\n<li>Can the data be deleted when the plugin is deleted?</li>\n<li>What personally identifiable data, other than the data from each form, is stored? (i.e. <a href=\"https://arstechnica.co.uk/tech-policy/2016/10/eu-dynamic-static-ip-personal-data/\" target=\"_blank\">a user’s IP address</a>)</li>\n<li>Is it possible to delete the submissions on an ad-hoc or scheduled basis?</li>\n</ul>\n<p>If you&#8217;re not sure what could be leftover in your database from other plugins, Jay has also created a &#8220;<a href=\"https://github.com/tharsheblows/mjj-whats-in-my-database\" target=\"_blank\">What&#8217;s in my database?</a>&#8221; plugin that administrators can install and access under the Tools menu. It is read-only and lists every table and its columns, so users can see if there are any surprises.</p>\n<h3>British Pregnancy Advice Service (BPAS) Hack Highlights the Danger of Storing Contact Form Entries in the Database</h3>\n<p>In educating website owners about the dangers of storing sensitive personal data, Heather Burns often cites the 2012 British Pregnancy Advice Service (BPAS) hack as one of the worst examples of the consequences of storing contact form entries in databases. The hacker, who was later jailed, stole thousands of records from the charity, which was running on an unknown outdated CMS with weak passwords. The site had not undergone a privacy impact assessment on its personal data collection and storage methods.</p>\n<p>&#8220;One of the services BPAS offers is access to abortions,&#8221; Burns said. &#8220;Many of their service users come over from Ireland, where abortion is banned under nearly all circumstances. The site had a contact form where women could enquire about abortions. BPAS thought that messages were merely passing through the site; no one within the organization had any clue that a copy of each contact form submission was stored on the database. Somewhat inevitably, the site was easily hacked by an anti-abortion activist who downloaded the database. He found himself in possession over 5,000 contact form submissions going back over five years containing women’s names, email addresses, phone numbers, and the fact that they were enquiring about abortions. He then announced his intention to publish the womens’ data on an anti-abortion forum.&#8221;</p>\n<p>The hacker was caught and arrested before he had the opportunity to publish the list. He received 32 months of jail time and BPAS was fined £200k for the data protection breaches.</p>\n<p>&#8220;As well as criticizing the charity for their technical failures, the regulator called attention to the fact that no one on the staff had thought to ask the proper questions about the tools they were using; they were also angry that the site had a legalistic privacy policy which was clearly not worth the pixels it was printed on,&#8221; Burns said. &#8220;All of these failures were deemed inadmissible and inexcusable by the data protection regulator. It is no exaggeration to say that women could have been killed because of a contact form.&#8221;</p>\n<p>Auditing contact forms is just one piece of the puzzle for those working towards GDPR compliance. Burns recommends that site administrators conduct a privacy impact assessment of personal and sensitive data that is submitted through forms. Privacy notices should also be clear about how this data is handled and how long it is retained before it is deleted.</p>\n<p>The GDPR was written to be extraterritorial and states that the regulations apply to any site or service that has European users. These sites are expected to protect EU users&#8217; data according to European regulations. Many American company owners are not yet convinced that this is enforceable outside of EU borders and have not invested in getting their online entities to be compliant.</p>\n<p>&#8220;GDPR provides a very useful framework for user protection, which is now more important than ever,&#8221; Burns said. &#8220;I&#8217;m encouraging Americans to work to GDPR because it&#8217;s a constructive accountable framework that&#8217;s a hell of a lot better than nothing.&#8221;</p>\n<p><a href=\"https://wordpress.org/plugins/wider-gravity-forms-stop-entries/\" target=\"_blank\">Wider Gravity Forms Stop Entries</a> is currently the only plugin in the official WordPress directory that addresses GDPR concerns for a specific contact form plugin. Others may become available as the May 2018 deadline approaches. Jonny Allbut warns users in the FAQ to test the plugin with third-party GF extensions before adding it to a live site, as some extensions may rely on referencing data entries stored in form submissions.</p>\n<p>I asked Carl Hancock if Gravity Forms might make storing form entries in the database an optional feature and he confirmed they are considering it.</p>\n<p>&#8220;Yes, this is certainly possible,&#8221; Hancock said. &#8220;We try to avoid conflicts with available 3rd party add-ons for Gravity Forms to encourage their development,&#8221; Hancock said. &#8220;But unfortunately it is not always avoidable. It is a feature that has been requested numerous times in the past and I suspect with the GDPR it will be a feature that will be requested even more going forward.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Aug 2017 23:03:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Post Status: Free speech, privacy, and the web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=38615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://poststatus.com/free-speech-privacy-and-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7492:\"<p>Politics and the web are intersecting more and more. In recent news, at least three WordPress related companies have been getting broad media attention.</p>\n<p>In just a few days, we&#8217;ve seen GoDaddy <a href=\"https://www.vox.com/policy-and-politics/2017/8/14/16143820/godaddy-and-google-wont-host-daily-stormer-domain\">shut down a site</a> for violating terms and conditions, <a href=\"https://www.fastcompany.com/40454089/wordpress-bans-website-of-fascist-group-linked-to-alleged-charlottesville-killer\">as well as</a> Automattic. DreamHost received significant attention for <a href=\"https://www.dreamhost.com/blog/we-fight-for-the-users/\">refusing to release site visitor information</a> to the US Department of Justice.</p>\n<p>I think the most relevant angle for this website is to note that it&#8217;s important for web-based services to be prepared for the unexpected news cycles that revolve around web-based properties.</p>\n<p>How well does your PR team know your terms and conditions? What&#8217;s your stance on free speech, and when can that cross a line into speech or content that your service is ready to limit? The definitions can be narrow; let&#8217;s look at Automattic&#8217;s decision to shut down a site called Blood and Soil.</p>\n<p>It&#8217;s a despicable site, and it has been for a while. Automattic is aware of the sites that exist on WordPress.com, and this isn&#8217;t their first rodeo with objectionable sites receiving lots of backlash from advocacy groups. For instance, the Guccifer 2.0 person or group that hacked the Democratic National Committee was on WordPress.com, and they still are. There are countless others, some hacking related, some simply vile or hate-filled.</p>\n<p>So what makes a site cross the line for a particular service? GoDaddy&#8217;s Ben Butler <a href=\"https://www.fastcompany.com/40411086/activists-push-back-against-the-platforms-that-quietly-empower-hate-groups\">described to Fast Company</a> that they draw the line between speech and violence:</p>\n<blockquote><p>GoDaddy&#8217;s Ben Butler described to Fast Company that they draw the line between speech and violence:</p>\n<p>“We strongly support the First Amendment and are very much against censorship on the internet,” writes Ben Butler, director of the Digital Crimes Unit for <a href=\"https://www.godaddy.com/\">GoDaddy</a>, in an email. He adds that, “if a site promotes, encourages, or engages in violence against people, we will take action.”</p></blockquote>\n<p>The GoDaddy decision (which Google followed up with as well) was especially interesting because they made the decision as the domain registrar, not a content host. In that case they weren&#8217;t actually providing the hosting service.</p>\n<p>Automattic has similar policies. Specifically, they link to <a href=\"https://en.support.wordpress.com/user-guidelines/\">user guidelines</a> within their <a href=\"https://en.wordpress.com/tos/\">ToS</a>, which has a clause for &#8220;directly threatening material.&#8221;</p>\n<blockquote><p>Do not post direct and realistic threats of violence. That is, you cannot post a genuine call for violence—or death—against an individual person, or groups of persons. This doesn’t mean that we’ll remove all hyperbole or offensive language.</p></blockquote>\n<p>They also have a specific policy (not directly linked from their ToS) for <a href=\"https://en.support.wordpress.com/terrorist-activity/\">terrorist activity</a>, and a provision to allow them to remove content or users for any reason.</p>\n<p>The terrorist in Charlottesville aligned himself with Blood And Soil, prompting Automattic to pull the plug —  as the line was crossed.</p>\n<p>DreamHost&#8217;s <a href=\"https://www.dreamhost.com/blog/we-fight-for-the-users/\">pushback to the government</a> was about First Amendment concerns as well, primarily with visitors:</p>\n<blockquote><p>The request from the DOJ demands that DreamHost hand over 1.3 <em>million</em> visitor IP addresses — in addition to contact information, email content, and photos of <strong>thousands</strong> of people — in an effort to determine who simply <em>visited</em> the website. (Our customer has also been notified of the pending warrant on the account.)</p>\n<p>That information could be used to identify any individuals who used this site to exercise and express political speech protected under the Constitution’s First Amendment. That should be enough to set alarm bells off in anyone’s mind.</p></blockquote>\n<p>Every host deals with requests that may not require visitor information but definitely do require account information. Automattic&#8217;s Paul Sieminski provided a helpful post on the <a href=\"https://transparency.automattic.com/2017/07/25/shining-light-on-national-security-letters/\">types of requests they get</a>, and how they handle them.</p>\n<p>The US has broad protections built into the First Amendment covering free speech. Platforms are not required to meet those protections; however, many are strident supporters of the First Amendment. Those protections are often for some of the most unpopular types of content. The Supreme Court has ruled there&#8217;s <a href=\"https://www.bostonglobe.com/opinion/2017/08/14/there-hate-speech-exception-first-amendment/q9m4IqfQvbo24nnlnPor1O/story.html\">no hate speech exception in the First Amendment</a>, and this ruling has been cited recently in a trademark case.</p>\n<p>I think the author of the above-cited op-ed makes a good point:</p>\n<blockquote><p>We can and should speak up against hate. As the Supreme Court makes clear, there’s no hate speech exception to the First Amendment. With that freedom comes a heavy burden for government officials like Baker and Walsh, who must try to keep protected speech from turning into acts of violence.</p></blockquote>\n<p>The burden is also heavy for platforms who are dedicated to providing a place for unpopular opinions. There are many times when the unpopular opinion, or anti-government opinion, is incredibly important to protect. But when speech stems over into violence, then I believe platforms have not only a right, but also a responsibility to take a stand.</p>\n<p>It&#8217;s important for organizations to be educated about and consistent with their own terms of service, company-wide. I&#8217;m afraid these hard questions about speech, rights, and responsibility will be pretty common for a while to come. And as fast as information spreads — for instance, the calls for GoDaddy to shut down a hate site this week came in a fury, part of a quickly viral Twitter post — acting quickly and consistently will be incredibly important.</p>\n<p>I&#8217;ve talked about platforms and services with some control over their user base. The obvious other side of this is that there is a whole segment of our community with no control over their users. Your theme, plugin, and WordPress itself can be used without permission by absolutely anyone, and of course that&#8217;s by design. WordPress or a WordPress-related product could be identified and criticized virally for enabling objectionable users and content</p>\n<p>As a community, are we prepared to respond to that?</p>\n<p>PS: If you&#8217;re a journalist writing about WordPress.com and issues like these, please understand the difference between WordPress.com, owned by Automattic, and WordPress the software. <a href=\"https://poststatus.com/resources/wordpress-versus-automattic/\">I wrote a handy guide for you</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Aug 2017 18:38:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"HeroPress: The Greatest Screenplay Writer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2033\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://heropress.com/essays/greatest-screenplay-writer/#utm_source=rss&utm_medium=rss&utm_campaign=greatest-screenplay-writer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14463:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/081617-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress is not like any other open source communityI saw before.\" /><p>My upbringing was not quite usual Serbian upbringing. I was almost forbidden to do things I didn&#8217;t really love. My parents insisted on trying things and finding that deep passion. But I didn&#8217;t have to search and try. I always knew what I&#8217;d be when I grow up. As long as I remember, there was no doubt.</p>\n<h3>A classical musician</h3>\n<p>When I was 8 my mom took me to local music school for entrance examination. I was in! Oh, joy! Finally I was learning to play and sing, to read and write this new language. Italian. Oh, music scores too! There was a whole new world that my parents, or anyone in my family, didn&#8217;t know anything about and I was stepping into it. I was doing just fine in it.. and I couldn&#8217;t live outside of it.</p>\n<p>As time passed, I finished elementary and high music school, went to music Academy, almost finished it and then my mother died. It was 2003. Two weeks later I found out I was pregnant. There was no time for grief and I couldn&#8217;t feel the joy. I just switched off and turned to the facts: I became a mom and a wife and I needed a job.</p>\n<p>And what a job did I found. An opera prompter. Opera Prompter! God, I love that job. Every second of it for ten years. I was yelling at singers, singing, conducting, traveling, laughing and crying. My Italian was significantly improved. Working time was great &#8211; so much free time to be a mom, study for Academy, get a hobby&#8230;</p>\n<h3>Opera prompter&#8217;s hobby</h3>\n<p>In 2007 I was administrator in one English speaking forum with focus on software and hardware topics. It helped me to significantly improve my English. And my tech knowledge. Which was close to none when I registered. As one of administrators, occasionally I had to tweak site here and there. It was great! There was this code and when I would change something in code it would show on the site. Neat! I loved reading those files, finding patterns and parts written in humanly understandable forms. Later I learned those were called loops and conditionals. Also later I learned that this language is called PHP and that many other languages for building websites exist. Forum script was phpBB3.</p>\n<p>I was never a gamer. Never understood the point of game, besides finishing it. I guess PHP was to me what games are to passionate gamers. Like a puzzle or sudoku.</p>\n<p>At the same time my marriage was turning from bad into worse and in the beginning of 2008 I finally decided it was enough. We were working on Mozart&#8217;s “Don Giovanni” in Theater. I remember this so clearly because my divorce was just turning from bad into worse. Those few months lasted for centuries after which I still needed a lot of time to recover what&#8217;s left of my self-esteem. My complete mental and emotional health was destroyed after years of domestic violence.</p>\n<p>2009 was important year for me. The cognition of possibility to have local server on my own machine and test everything before executing it on live site turned out to be very helpful.</p>\n<p>In October I needed a blog script and friend recommended WordPress. It was 2.9 version. It didn&#8217;t really work well but everyone was writing about it. There were at least 5 new tutorials on various blogs every day. I was digesting them every morning with my first coffee. The ones I really liked I even reproduced in my shiny new localhost. Soon enough I developed a local monster with different widgets on each page, future posts archive, post series done with custom fields and God knows whatnot. This WordPress was slowly taking over my free time. Every second of it.</p>\n<h3>So, the WordPress it is</h3>\n<p>One day a friend of mine asked me to build him a website for his ensemble. And for money. Money? I never thought of getting money for this. This was too good of a hobby. But he&#8217;s a friend so I did it. Then another friend showed up with the same request. And another.. I became freelance WordPress developer before I could even understand what was happening. It wasn&#8217;t really a favor to friends any more. I was a single mom with mortgage. My daughter was in primary school, life costs became serious while the art-and-culture salary was silently and regularly reduced.</p>\n<blockquote><p>I was freelancing every single minute I could. Sleeping was luxury I could afford on weekends.</p></blockquote>\n<p>My dad was helping me tremendously. He was babysitting during theater&#8217;s rehearsals and performances in the evenings. When I&#8217;d get home, my daughter was sleeping, tomorrow&#8217;s meals cooked, dishes done and shining. I could go on like this but it was uncertain for how long.</p>\n<p>In the summer of 2013 I was recovering from what was supposed to be routine gallbladder surgery and what nearly cost me life. Almost fully operational, I was getting ready for next roller coaster known as a mix of school year, freelancing and theater&#8217;s season. Then my father died. Suddenly. In an accident.</p>\n<p>Oh, this screaming silence..</p>\n<p>I couldn&#8217;t think. Or breathe. For months. I needed someone to put the roller coaster on pause. Just.. Just a short one. To take a breathe. But there was no one. I was all alone with a 9 years old child who had to grow up fast. I had to grow up fast.</p>\n<blockquote><p>All of a sudden I realized that I can not afford a single mistake any more. I can not be ill, get in debts, lose job. Or mind. I was the only one I could count on.</p></blockquote>\n<p>In 2014 my theater salary got reduced once again. And again in following year. 30% in total. For ten years it never covered all of my monthly expenses but this was ridiculous. It was a time for me to stop playing it safe and see what I&#8217;m made of. That was probably the most difficult decision I have ever made. A heart breaking one. Stop being musician. So I quit being Opera Prompter and started working as a full time WordPress developer.</p>\n<h3>Well, hello, World!</h3>\n<p>I didn&#8217;t really know for which wage level my knowledge was. For years I was the only WordPress developer I knew in person. The rest were all online superstars I was learning from. So I started as a shy medior and the only WordPress developer in agency. It turns out that, for this agency needs, I was senior and soon enough I was organizing and leading development processes for new projects.</p>\n<p>From the business point of view repeating similar projects makes you &#8220;niche expert&#8221;. I do understand that. But, as many other developers out there, I don&#8217;t like repeating the same tasks or projects. Not even once. I missed variety which led me to become more active contributor on wordpress.org.</p>\n<blockquote><p>For years I was just contributing to codex here and there and never really thought about all the people behind WordPress.</p></blockquote>\n<p>In my vague image, they were a bunch of really great developers and they were doing just fine. I was learning from them so I could not possibly help them. I would just be on their way.</p>\n<p>However, in my attempt to find something interesting to keep my mind amused with, I came upon <a href=\"https://make.wordpress.org/chat/\">Slack url</a> for communication between contributors on WordPress project. What a crowd! And not just developers &#8211; everyone! Doing all kinds of different bits, and all important. How odd. WordPress is not like any other open source community I saw before. So much more open and inviting! I remember reading through channels and thinking: &#8220;I could do this&#8221;, &#8220;Oh, I&#8217;d love to learn that&#8221;, &#8220;This person is funny&#8221;.. I&#8217;m gonna stick.</p>\n<h3>Antisocial extrovert in a more open open source community</h3>\n<p>No matter how I tried, and I did try, I&#8217;m just not a people person. Among other antisocial treats, over the years I have developed a heavy dark humor which, more often than not, due to lack of social interactions I reveal in a completely wrong way. But these people seem not to mind so I thought to give it a try with them. Don&#8217;t get me wrong, <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/code-of-conduct/\">Code of Conduct</a> is extremely important in WordPress community. No community wants bullies. But rare communities accept social weirdos and misfits. And this one doesn&#8217;t just accept them, it makes them feel like fits. That was a nice change.</p>\n<p>I started attending local <a href=\"https://www.meetup.com/WP-Meetup-NS/\">Meetups</a>, even gave <a href=\"https://www.meetup.com/WP-Meetup-NS/events/235186967/\">a talk</a> on contributing to <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">Theme Review team</a> after which I was invited to join <a href=\"https://www.toptal.com/\">Toptal platform</a> as a freelance developer. My social adventure got me volunteering on <a href=\"https://2017.belgrade.wordcamp.org/\">WordCamp Belgrade</a> and <a href=\"https://2017.europe.wordcamp.org/\">WordCamp Europe in Paris</a>. I must admit there were &#8220;too many people at the same time&#8221; moments but there were lots of ways to stay involved with controlled dose of human interactions. I chose volunteering at Experts bar and it worked out just great. I really loved all the hugs though.</p>\n<p>Today I try to keep my focus on just a few channels in make WordPress slack and my contribution wish list regularly updated. One can have only so many hours in a day. Most often you&#8217;ll find me in <a href=\"https://wordpress.slack.com/?redir=%2Fmessages%2Fdocs\">#docs</a> and <a href=\"https://wordpress.slack.com/?redir=%2Fmessages%2Fcore-docs\">#core-docs</a> channels, doing various stuff with <a href=\"https://make.wordpress.org/docs/handbook/about-the-docs-team/get-involved/\">Documentation</a> team.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/milana-cap_wcbgd.jpg\"><img class=\"alignnone wp-image-2036 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/milana-cap_wcbgd-1024x683.jpg\" alt=\"Milana, on a rooftop baclony with some other people looking at her phone\" width=\"960\" height=\"640\" /></a></p>\n<h3>The Questions</h3>\n<p>Among all the questions I get about my professional path, the most commons are &#8220;<strong>How come you made such a huge change from music to web development?</strong>&#8220;, &#8220;<strong>Did you go to school to become a developer</strong>?&#8221; and &#8220;<strong>Do you miss being musician?</strong>&#8220;. Answer to the first question is quite easy:</p>\n<p>&#8220;Being musician and writing code are pretty much the same. They both require the same parts of your mental struggle and make you go through the same emotional tortures and enlightenments.&#8221;</p>\n<p>The second question, however, is a bit more difficult to answer. In the light of the first answer, I could say that I was exposed to the required way of thinking. Practicing an instrument 6 hours per day for over a decade does teach you a couple of things about commitment. World of classical music is a world of magnificent talents and varieties which touches you all the way to the humble self where you find appreciation for being able to feel this way. Personally, I believe this is extremely important for developer &#8211; to be humble and grateful to person who helped them find this humbleness.</p>\n<p>No, I don&#8217;t have a formal developer&#8217;s education. It doesn&#8217;t seem to prevent me from being developer. And no, I don&#8217;t miss being musician. Because I never stopped being one. I listen to classical music while I code and play piano when I have a difficult programming problem to solve. Feels so natural.</p>\n<p>I&#8217;d like to say that everything turned out pretty good at the end but, as my father used to say: &#8220;Life is the greatest screenplay writer&#8221; and my life seems to be the witty one too. In expectation of future turns I&#8217;d recommend <a href=\"https://www.youtube.com/watch?v=-4788Tmz9Zo&t=884s\">Beethoven&#8217;s Symphony No.7, II movement</a>, some very loud laughs and lots of WordPress loops.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: The Greatest Screenplay Writer\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=The%20Greatest%20Screenplay%20Writer&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fgreatest-screenplay-writer%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: The Greatest Screenplay Writer\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fgreatest-screenplay-writer%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fgreatest-screenplay-writer%2F&title=The+Greatest+Screenplay+Writer\" rel=\"nofollow\" target=\"_blank\" title=\"Share: The Greatest Screenplay Writer\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/greatest-screenplay-writer/&media=https://heropress.com/wp-content/uploads/2017/08/081617-150x150.jpg&description=The Greatest Screenplay Writer\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: The Greatest Screenplay Writer\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/greatest-screenplay-writer/\" title=\"The Greatest Screenplay Writer\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/greatest-screenplay-writer/\">The Greatest Screenplay Writer</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Aug 2017 12:00:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Milana Cap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: WordPress Mobile Apps Updated with a New Login Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74197\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wordpress-mobile-apps-updated-with-a-new-login-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4732:\"<p>The WordPress mobile apps are sporting <a href=\"https://en.blog.wordpress.com/2017/08/15/an-updated-login-coming-to-the-wordpress-mobile-apps/\" target=\"_blank\">a new login experience</a> that Automattic&#8217;s mobile designers and developers released in the latest versions. The login flow has been completely redesigned to provide a more unified experience for connecting both self-hosted and WordPress.com-hosted sites. These flows were completely separate in the past and users were often confused about which one to select. The new design provides fewer opportunities for friction when logging in, an experience that likely determines many users&#8217; first impressions of the app.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/self-hosted-login-wp-mobile-apps.png?ssl=1\"><img /></a>Self-hosted login on mobile apps\n<p>&#8220;As we reimagined the login experience, there were a few key principles guiding us: keep it simple, minimize the distinction between a site hosted at WordPress.com versus somewhere else, and avoid anything that might be too clever,&#8221; Automattic mobile lead Eric Johnson said.</p>\n<p>Users can now connect new sites by entering the URL and the mobile apps will automatically detect if the site is hosted on WordPress.com or not. The new login flow ferries users on to the next step based on what kind of site is being connected. This is available in version 8.0 of WordPress for Android and version 8.2 of WordPress for iOS.</p>\n<p>The new login experience emphasizes the ease of using magic links for logging into WordPress.com. If the user enters and email address, the app will generate an authentication link and send it via email. This allows users to login without having to remember or enter a password.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/new-login-experience-wp-mobile-apps.png?ssl=1\"><img /></a></p>\n<p>If a user is entering the world of WordPress for the first time through the mobile apps, the new login experience also offers a short tour of the some of the features included in the app. These include WordPress.com features such as notifications, Stats, and the Reader. The apps, despite being marketed as the official WordPress mobile apps, are a product of Automattic and include a commercial upgrade path for WordPress.com services.</p>\n<p>The idea of the apps functioning as a gateway to help the greater WordPress ecosystem gain more users (and eventually see some graduate to self-hosted sites), no longer seems credible now that WordPress.com has <a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\" target=\"_blank\">entered the hosting space by allowing its customers to tap into third-party plugins and themes</a>.</p>\n<p>The updated login experience, while more convenient for users, continues to blur the line between self-hosted and WordPress.com-hosted sites. WordPress for Android and iOS used to have their own separate blogs but all of the news is now funneled through WordPress.com&#8217;s news blog and the @WordPressiOS and @WPAndroid Twitter accounts seemed to have been abandoned in favor of marketing updates through WordPress.com.</p>\n<p>In the past, many in the WordPress community have asked why the apps are not called the WordPress.com mobile apps, since they include features that are not central to the core publishing experience for self-hosted users. Last year when I <a href=\"https://wptavern.com/wordpress-for-android-5-7-adds-path-to-upgrade-wordpress-com-plan\" target=\"_blank\">interviewed</a> Maxime Biais, one of Automattic’s mobile engineers, he said the team had considered splitting the product into two apps.</p>\n<p>“We considered having both WordPress and WordPress.com apps, but we rejected this because it doesn’t make it more clear,” Bias said. “It’s probably even more ambiguous when someone searches the Play Store for &#8216;WordPress&#8217; or &#8216;Blog&#8217; and finds both WordPress and WordPress.com apps.”</p>\n<p>Now that that mobile apps have become a direct pipeline for new WordPress.com hosting customers, it may be time to re-visit the consideration of splitting the apps into two distinct products: one for WordPress.com&#8217;s commercial interests and one that officially represents the open source WordPress project for self-hosted users without any corporate interests. If the project&#8217;s official mobile apps are a key part of new users&#8217; onboarding experience, they should accurately represent the software as an independent platform that can be hosted with and extended by any number of free and commercial products in the WordPress ecosystem.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Aug 2017 06:33:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: WordCamp US to Experiment With A Community Bazaar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74138\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/wordcamp-us-to-experiment-with-a-community-bazaar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2237:\"<p>In addition to taking place in a new location this year, <a href=\"https://2017.us.wordcamp.org/\">WordCamp US</a> will have a <a href=\"https://2017.us.wordcamp.org/attendee-information/community-bazaar/\">Community Bazaar</a>. An area will be set aside in the venue allowing those chosen to showcase their WordPress communities. Raquel Landefeld, Randy Hicks, and Dustin Meza are organizing the Bazaar.</p>\n<p>Landefeld says the idea was inspired by the people who make up the WordPress Community. &#8220;We recognize that some local WordPress communities are thriving and some are just getting started,&#8221; she said.</p>\n<p>&#8220;What better way to help build community then by showcasing our local communities to the world. The thought is that smaller, newer, and communities just in their infancy, will be inspired with fresh ideas and or how-tos from the bigger and more established WordPress communities.&#8221;</p>\n<p>The idea is similar to that of a science fair where each community chosen will have a space to highlight why theirs is awesome.</p>\n<p>The purpose of the event is to inspire growth while providing an opportunity for communities to learn from each other. There will also be metrics shared such as, number of meetup and WordCamp attendees, meetups per month, and unique qualities pertaining to the local groups.</p>\n<p>The organizing team is looking for the inside scoop on local communities. &#8220;This is all about you and your local WordPress community,&#8221; Landefeld said.</p>\n<p>&#8220;This is your time to shine. Why is your community different, special, or amazing? Be showy! Forget modesty. Let your community’s awesomeness be a tool to inspire other WP communities just getting started or striving.&#8221;</p>\n<p>Last year saw record growth for WordPress community events. In 2016, more than 62,566 people attended a local meetup in 58 countries and about one-third of those were new members. A total of 115 WordCamps were hosted in 41 different countries.</p>\n<p>Those interested in participating in the Bazaar are encouraged to fill out the following <a href=\"https://2017.us.wordcamp.org/attendee-information/community-bazaar/\">submission form</a> and provide as many details as possible.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Aug 2017 00:45:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: maekit Acquires WP Remote, Plans to Add Cloud-Based Backup Services\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/maekit-acquires-wp-remote-plans-to-add-cloud-based-backup-services\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3661:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/maekit-wpremote.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://maek.it/\" target=\"_blank\">maekit</a>, a cloud-based platform that handles the business aspect of web design, has <a href=\"https://hmn.md/2017/08/10/wp-remote-finds-home-maekit/\" target=\"_blank\">acquired WP Remote from Human Made</a>. Two years after Human Made began searching for a buyer, maekit purchased WP Remote to integrate it with the company&#8217;s existing platform that caters to designers managing multiple clients.</p>\n<p>&#8220;WP Remote had remained a much-loved product with its users and despite receiving no ongoing development it had remained an iconic plugin in the WordPress community,&#8221; Human Made CEO Tom Willmot said.</p>\n<p>maekit took over WP Remote operations in March after closing the deal. According to maekit CEO Matt Holme, the company inherited 20,000 users with 120,000 WordPress websites. His team has maintained WP Remote in its original platform for the past few months before integrating it into maekit last week.</p>\n<p><a href=\"https://wpremote.com/\" target=\"_blank\">WP Remote</a> has offered unlimited, free WordPress site management (updating core, plugins, and themes with a single click) since 2010. It hasn&#8217;t received ongoing development for several years, but maekit plans to add backup features that will make bring it more up to speed with competitors like MangeWP, MainWP, and InfiniteWP.</p>\n<p>&#8220;We definitely plan to keep WP Remote free and expand its features,&#8221; Holme said. &#8220;Specifically we are looking at offering easy-to-manage cloud-based backup services. For example, hook up your Dropbox (or any other popular cloud based storage system) and schedule regular backups of your WP websites.&#8221;</p>\n<p>maekit&#8217;s acquisition of WP Remote gives the company&#8217;s customers the ability to deploy WordPress sites with one click and manage client sites and domains through a unified, white-labeled invoicing and payment system. The company has rolled out a few long-overdue bug fixes to WP Remote and Holme says the rest of maekit is functional but still technically in a closed beta mode.</p>\n<p>&#8220;Our revenue model revolves around direct sale hosting plans and also reselling integrated hosting plans for other leading global hosting providers,&#8221; Holme said. &#8220;We are refining the free invoicing and payment processing system built into maekit so that a maekit / WP Remote user can deploy a new hosted WP and charge their client a recurring monthly fee and retain the mark up they add on top of our base hosting prices as profit. This means literally no out of pocket expense for maekit / WP Remote users.&#8221;</p>\n<p>Although maekit&#8217;s one-click deployment service supports many popular CMS&#8217;s and e-commmerce platforms, including WordPress, Opencart, Drupal, Magento, and Joomla, Holme said the vast majority of the company&#8217;s customers are running on WordPress. Acquiring WP Remote brings a host of valuable new features to maekit&#8217;s customer base. maekit&#8217;s built-in client billing features, customized for freelancers and agencies, are what Holme says will differentiate the company from its competitors in the WordPress space.</p>\n<p>&#8220;I have a great deal of respect for these other WP management platforms and feel the size of the WP market means there is opportunity for all to succeed,&#8221; Holme said. &#8220;With the features of maekit also including new website deployment, invoicing, payment processing and client management, our platform is unique from the others.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Aug 2017 03:50:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"WPTavern: Gutenberg 0.8.0 Introduces 5 New Blocks: Categories, Text Columns, Shortcode, Audio, and Video\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://wptavern.com/gutenberg-0-8-0-introduces-5-new-blocks-categories-text-columns-shortcode-audio-and-video\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5712:\"<p>Gutenberg <a href=\"https://make.wordpress.org/core/2017/08/11/whats-new-in-gutenberg-11th-august/\" target=\"_blank\">0.8.0</a> was released over the weekend with five new blocks, major improvements to existing blocks, and support for more publishing features that have been missing from the new editor&#8217;s sidebar. The release also carries out the controversial decision to <a href=\"https://wptavern.com/user-tracking-to-be-removed-from-gutenberg-in-upcoming-0-8-0-release\" target=\"_blank\">remove the opt-in usage tracking code from the plugin</a>.</p>\n<p>The new <a href=\"https://github.com/WordPress/gutenberg/pull/2102\" target=\"_blank\">Categories block</a> can be found under the Widgets section, as it&#8217;s output is based on the existing categories widget. The default display is an alphabetized list of categories, but the block settings include options to display as a dropdown, show post counts, and show hierarchy.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/categories-block.png?ssl=1\"><img /></a></p>\n<p>A new Text Columns block allows users to split text content into multiple columns. The settings include a sliding scale for selecting 2-4 columns.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/text-columns-block-e1502741151590.png?ssl=1\"><img /></a></p>\n<p>Contributors are calling the Text Block &#8220;an initial exploration&#8221; of multiple columns for text-only content. Depending on testing, it may not be the implementation that ends up landing in the plugin permanently.</p>\n<p>&#8220;We&#8217;ve been over how difficult it is to get columns right, and also how already today third parties can build this,&#8221; Joen Asmussen <a href=\"https://github.com/WordPress/gutenberg/pull/2117#issuecomment-319347010\" target=\"_blank\">said</a>. &#8220;We may very well want an entirely different implementation than this one. But perhaps it&#8217;s good to get this in now and test it. Perhaps this can help inform how a better column implementation can work down the road. In fact we might want to merge this block in now, only to take it back out later again, same as the Cover Text block. For that reason, I think it&#8217;d be good to test this.&#8221;</p>\n<p>The new Video and Audio blocks are geared towards inserting files that have already been uploaded to the media library. However, I found the text on the video block to be confusing. If I was new to WordPress and didn&#8217;t understand how oEmbed works, I would be clicking inside the video block to figure out where to paste the URL.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/video-block.png?ssl=1\"><img /></a></p>\n<p>The new Audio and Video blocks mirror the same kind of functionality that users have experienced when adding images to their sites. In the future, contributors may introduce more features to the audio block, such as additional playback types and looping, but the first iteration includes just the basics.</p>\n<p>Gutenberg 0.8.0 adds resizing handlers to the existing Image Block, making it easy for users to insert and quickly resize an image. If you review the <a href=\"https://github.com/WordPress/gutenberg/pull/2213\" target=\"_blank\">GitHub ticket</a> for this feature, it&#8217;s clear that it was not easy to implement. Image resizing has gone through several changes and may have more down the road, especially as it pertains to the behavior of the caption. Ultimately, the caption field should not be wider than the image so that the two are placed together.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/image-resizing-gutenberg.png?ssl=1\"><img /></a></p>\n<p>This release introduces a post formats selector to the post settings sidebar. It includes a suggestion based on what blocks are in use in the post. One participant on the ticket noted that the suggestion gives too much importance to the post formats selection and might be confusing to users. The suggestion persists, despite a user switching the format to the one suggested. This is because Gutenberg cannot detect if it was explicitly set by the user or if the user selected the suggestion.</p>\n<p>&#8220;I happen to agree with you: post formats should go away,&#8221; Joen Asmussen <a href=\"https://github.com/WordPress/gutenberg/pull/2307#issuecomment-321232074\" target=\"_blank\">said</a>. &#8220;In fact part of the genesis of blocks as a concept is to provide a better interface than what post formats did. So the post format selector here is strictly a back-compat thing.&#8221;</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/post-format-selector.png?ssl=1\"><img /></a></p>\n<p>Gutenberg contributors have also <a href=\"https://github.com/WordPress/gutenberg/pull/2288\" target=\"_blank\">updated</a> the <a href=\"https://github.com/WordPress/gutenberg/blob/master/docs/design.md\" target=\"_blank\">design document</a> for the project, offering more clarity on their goals and concepts they are using to build the editor:</p>\n<blockquote><p>Ultimately, the vision for Gutenberg is to make it much easier to author rich content. Through ensuring good defaults, wrapping and bundling advanced layout options blocks, and making the most important actions immediately available, authoring content with WordPress should be accessible to anyone.</p></blockquote>\n<p>The idea is to simplify content creation for users so that they only have to learn one interface &#8211; the block interface. The design document adds several new sections that elaborate on the concept of &#8220;everything is a block&#8221; and includes best practices that developers can reference when designing their own blocks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Aug 2017 22:18:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"WPTavern: Early Results from NRKbeta’s Comment Quiz Plugin Show Readers Enjoy the Quiz but Rarely Leave a Comment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74105\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/early-results-from-nrkbetas-comment-quiz-plugin-show-readers-enjoy-the-quiz-but-rarely-leave-a-comment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3492:\"<p>Earlier this year, <a href=\"https://nrkbeta.no/\" target=\"_blank\">NRKbeta</a>, the Norwegian Broadcasting Corporation’s media and technology site, <a href=\"https://wptavern.com/nrkbeta-open-sources-comment-quiz-plugin-for-wordpress\" target=\"_blank\">open sourced its comment quiz plugin for WordPress</a>. The site&#8217;s publishers have been experimenting with requiring their readers to complete a short, three-question quiz before giving access to the comment form on certain articles. The goal of the plugin was to prevent rants and off-topic responses by ensuring that commenters have read the article.</p>\n<p>NRKbeta has <a href=\"https://nrkbeta.no/2017/08/10/with-a-quiz-to-comment-readers-test-their-article-comprehension/\" target=\"_blank\">published some preliminary results</a> after six months of experimenting with a mandatory quiz before commenting.</p>\n<p>&#8220;On average, there are a lot more attempts – both correct and wrong – than actual comments,&#8221; NRKbeta journalist Ståle Grut said. &#8220;It seems many take the quiz to check how much they remember from the story – and not necessarily to leave a comment. Almost as a fun little game after reading.&#8221;</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/nkrbeta-comments.jpg?ssl=1\"><img /></a></p>\n<p>Grut reported that on average the quiz has an error rate of 72%. His team suspects that the bulk of the wrong answers are coming site&#8217;s international readership, as most of the articles are posted in Norwegian, which can be difficult to translate.</p>\n<p>The sample is still relatively small, because the team hasn&#8217;t yet created any set rules for when authors should enable the quiz.</p>\n<p>&#8220;The idea was to test it on stories that had potential for a gloomy comments section,&#8221; Grut said. &#8220;It is something we are proud to rarely have here at NRKbeta.&#8221;</p>\n<p>On one story, NRKbeta staff made an error where it was impossible to submit the correct answer to the quiz, because it wasn&#8217;t listed. As a result, this article&#8217;s quiz received more than 1,000 wrong answers.</p>\n<p>One unexpected benefit of the plugin is that it makes it more of a hurdle for readers to leave short comments, such as &#8220;nice post&#8221; that don&#8217;t add much to the conversation.</p>\n<p>&#8220;This favors the most eager with the most time on their hands,&#8221; Grut said. &#8220;From time to time this has led to a decline in quality and tone, causing him to often abandon the quiz module.&#8221;</p>\n<p>These initial conclusions are in line with what we predicted when the plugin was released: the most motivated ranters are not significantly inconvenienced by a short quiz. Keeping comment sections free of trolls is not yet something that is easy to automate. It still requires time spent in the moderation queue.</p>\n<p>After the comment quiz plugin was enabled on the site, NRKbeta counted more than 300 articles around the web that had been published about the experiment. Quizzing commenters was hailed as one of the best new ideas for warding off trolls. However, the NRKbeta team cannot yet conclude whether the plugin is a success or not.</p>\n<p>&#8220;The numbers seem to show that the quiz has worked like a little game for many readers,&#8221; Grut said. &#8220;They like to take the quiz, but not to leave a comment. Being tested on how much they remember from the article seems to be the most popular use of our quiz.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Aug 2017 02:54:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: In Case You Missed It – Issue 23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74121&preview=true&preview_id=74121\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6478:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Using WordPress to Publish Law Reviews</h2>\n<p>Kevin O&#8217;Keefe of Above the Law, <a href=\"http://abovethelaw.com/2017/08/kim-jong-un-has-much-to-teach-pentagon-about-speed-gen-hyten/\">explains why</a> WordPress should be used to publish law reviews instead of printing them.</p>\n<blockquote><p>Ten years ago it would not have been as easy to set up, or license, a WordPress publishing platform by each law school. Most law professors were, and still are, publishing blogs on <a href=\"http://www.typepad.com/\">TypePad</a>, an outdated and little used publishing software, originally produced by Six Apart.</p>\n<p>Today, WordPress is running almost 70 percent of the content management systems in the world. WordPress is regularly updated and enables a multi-user platform with multiple individual sites, all of which would be needed by a law school’s &#8216;printing press&#8217;.</p></blockquote>\n<h2>Glutenberg Free</h2>\n<p><a href=\"https://wordpress.org/plugins/glutenburg-free/\">Gluternberg Free</a> is a WordPress plugin developed by Adam Silverstein that restores and maintains the post editing experience from WordPress 4.8.</p>\n<h2>Open Source Candy Bar Labels for WordCamps</h2>\n<p>If you&#8217;re organizing a WordCamp and want to give out Happiness bars, check out this <a href=\"https://github.com/dimensionmedia/WordCamp-Happiness-Bars\">custom label design</a> used at WordCamp Miami 2016. The assets are open sourced and available for free for other WordCamp organizers to use.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">WordCamps: have “Happiness Bars” for your next event. <a href=\"https://twitter.com/hashtag/wcmia?src=hash\">#wcmia</a> open-sourced the wrappers: <a href=\"https://t.co/LvtG3JlhAw\">https://t.co/LvtG3JlhAw</a> <a href=\"https://t.co/hailcQCsXg\">pic.twitter.com/hailcQCsXg</a></p>\n<p>&mdash; David Bisset (@dimensionmedia) <a href=\"https://twitter.com/dimensionmedia/status/896060900410445825\">August 11, 2017</a></p></blockquote>\n<p></p>\n<h2>Instead of Threading Tweets, Consider Blogging Instead</h2>\n<p>Amanda Rush <a href=\"https://www.customerservant.com/next-time-youre-thinking-threading-twitter-write-blog-post-instead/\">explains</a> the drawbacks of threading messages on Twitter and why blogging is a better option. Blog posts are easier to archive and link to, are not lost in the noise as quickly, and are a better user experience for consuming content.</p>\n<p>By the way, if you&#8217;ve already threaded a message on Twitter, Rush shares links to tools that can help capture a thread and turn it into a blog post.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://www.customerservant.com/next-time-youre-thinking-threading-twitter-write-blog-post-instead/\">The Next Time You&#8217;re Thinking About Threading On Twitter, Write A Blog Post Instead</a></p></blockquote>\n<p></p>\n<h2>The Story of HelloSales</h2>\n<p>iThemes published a <a href=\"https://ithemes.com/2017/08/10/story-of-our-newest-ithemes-product-hellosales/\">detailed article</a> on how their newest product, <a href=\"https://ithemes.com/hellosales\">HelloSales</a>, came to be. Cory Miller explains the product&#8217;s logo, name, and who the people are that are building it.</p>\n<blockquote><p>The rooster is essentially the symbol or emblem of Portugal. You’ll see it everywhere there when you go there (and I strongly encourage you to do so, even if I want to keep the place all to myself).</p>\n<p>It became obvious we wanted to include a rooster in the logo of HelloSales as a hat tip to Portugal and our team there. We also think it’s a great symbol for what we hope to help our customers do — make more money through their WooCommerce stores.</p>\n<p>Through several iterations of a name, we landed on HelloSales as a name, as yet another hat tip to the story — their company’s name, HelloDev — that led us here.</p></blockquote>\n<p>It&#8217;s a cool story and one I&#8217;d like to see more CEO and founders share when they acquire a product or business.</p>\n<h2>WordPress Telemetry Part Two</h2>\n<p>Morten Rand-Hendriksen <a href=\"https://www.linkedin.com/pulse/case-telemetry-wordpress-morten-rand-hendriksen\">updated his article</a> on the case for WordPress telemetry after a <a href=\"https://twitter.com/mor10/status/895299336375902209\">lengthy conversation</a> on Twitter.</p>\n<blockquote><p>What WordPress needs is an open debate on this topic. What are the arguments for and against? What can be gained and what is lost? Should we do this? And if so, how do we do it in an open, transparent, and responsible way that helps inform and elevate the conversation while looking after the interests of <em>all</em> WordPress users?</p></blockquote>\n<p>These are interesting questions and although the <a href=\"https://core.trac.wordpress.org/ticket/38418\">ticket</a><a href=\"https://core.trac.wordpress.org/ticket/38418\"> is closed</a> on Trac, users are encouraged to continue the discussion. In the future, I&#8217;d like to see data and other research published that explains <strong>why</strong> a major User Interface changing feature is necessary in core before so much energy is devoted to it.</p>\n<h2>Cowboy Wapuu!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don&#8217;t know, Wapuu is the <a href=\"http://wapuu.jp/2015/12/12/wapuu-origins/\">unofficial mascot</a> of the WordPress project. Cowboy Wappu is the official mascot of <a href=\"https://2017.dfw.wordcamp.org/\">WordCamp Dallas/Fort Worth 2017</a> that takes place on November 11-12. Tickets are still available and include admission to the event and after-party, lunch on Saturday, and swag. Yee-Haw!</p>\n<img />Cowboy Wapuu for WordCamp Dallas/Fort Worth 2017\n<p>That&#8217;s it for issue twenty-three. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Aug 2017 01:47:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: WordPress 4.9 to Focus on Code Editing and Customization Improvements, Targeted for November 14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://wptavern.com/wordpress-4-9-to-focus-on-code-editing-and-customization-improvements-targeted-for-november-14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3929:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/08/planning.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/Q3X736G951\">Sophie Ollis</a>\n<p>WordPress core contributors have set a tentative <a href=\"https://make.wordpress.org/core/4.9/\" target=\"_blank\">schedule for the upcoming 4.9 release</a>, which will be co-led by Mel Choyce and Weston Ruter. The development cycle kicked off in early August with Beta 1 scheduled for early October and the official release targeted for November 14.</p>\n<p>Choyce published a <a href=\"https://make.wordpress.org/core/2017/08/11/wordpress-4-9-goals/\" target=\"_blank\">list of goals</a> today that outlines what they will be aiming for in 4.9. WordPress users can expect to see some existing features polished up to be more user-friendly, including some long-awaited updates to the experience of editing theme and plugin files in the admin.</p>\n<p>Contributors are looking at <a href=\"https://core.trac.wordpress.org/ticket/6531\" target=\"_blank\">adding a nested folder structure</a> that will offer access to files deeper than two levels. They are also aiming to <a href=\"https://core.trac.wordpress.org/ticket/31779\" target=\"_blank\">add better warnings</a> for users who are editing themes and plugins, an improvement which Choyce described as &#8220;graduating from cowboy coding school.&#8221; This could help prevent users from unknowingly making small errors that could have a negative impact on their sites.</p>\n<p>Another goal for 4.9 is to improve the code editing experience by adding syntax highlighting. Contributors are examining the possibility of incorporating CodeMirror functionality into the Customizer&#8217;s custom CSS box as well as the plugin and theme file editors. An experimental <a href=\"https://github.com/WordPress/codemirror-wp\" target=\"_blank\">Syntax Highlighting Code Editor for WordPress Core</a> plugin is currently being developed on GitHub as a potential solution for a seven-year-old trac <a href=\"https://core.trac.wordpress.org/ticket/12423\" target=\"_blank\">ticket</a> for code editor improvements.</p>\n<p>Customizer improvements are also one of the main focuses for 4.9. Contributors to the Customize Snapshots feature plugin have been <a href=\"https://wptavern.com/customize-snapshots-0-6-0-adds-the-ability-to-name-and-merge-changesets\" target=\"_blank\">steadily refining</a> the ability to <a href=\"https://core.trac.wordpress.org/ticket/39896\" target=\"_blank\">draft</a> and <a href=\"https://core.trac.wordpress.org/ticket/28721\" target=\"_blank\">schedule</a> changesets in the Customizer. They are also looking at providing a better experience for <a href=\"https://core.trac.wordpress.org/ticket/39693\" target=\"_blank\">widget</a> and <a href=\"https://core.trac.wordpress.org/ticket/39692\" target=\"_blank\">menu mapping</a> when switching between themes, improving homepage settings (&#8220;<a href=\"https://core.trac.wordpress.org/ticket/16379\" target=\"_blank\">Page on Front</a>&#8220;), and displaying responsive images in the Customizer sidebar.</p>\n<p>This list of goals for 4.9 includes many more items and the release leads are approaching it with the understanding that some features and improvements may not be ready in time. One item on the list is getting in <a href=\"https://github.com/WordPress/gutenberg/issues?q=is%3Aopen+is%3Aissue+label%3A%22Core+REST+API+Task%22\" target=\"_blank\">API endpoints that Gutenberg requires</a>.</p>\n<p>Looking ahead to WordPress 5.0, new Gutenberg design lead Tammie Lister has <a href=\"https://make.wordpress.org/core/2017/08/11/revised-suggested-roadmap-for-gutenberg-and-customization/\" target=\"_blank\">proposed a revised, tentative roadmap</a> that anticipates having the new editor ready for a merge proposal in December 2017. Lister said the outline is not set in stone and Gutenberg&#8217;s path to 5.0 would be dependent on the success of the merge proposal.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Aug 2017 19:19:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"WPTavern: WordPress.com’s Business Plan Gives Subscribers a Way to Tap into WordPress.org’s Third-party Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74048\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8395:\"<p>Earlier this year, WordPress.com <a href=\"https://wptavern.com/wordpress-com-experiments-with-allowing-business-plan-customers-to-install-third-party-plugins-and-themes\">launched an experiment</a> giving <a href=\"https://wordpress.com/business/\">Business plan subscribers</a> the ability to install third-party plugins and themes. Automattic<a href=\"https://en.blog.wordpress.com/2017/08/07/wordpress-com-business-now-supports-plugins-and-third-party-themes/\"> concluded the experiment</a> earlier this week and officially made the features part of the subscription plan.</p>\n<p>&#8220;With support for plugins and third-party themes, WordPress.com Business users will be able to connect their sites to great email and social media tools, e-commerce solutions, publishing and subscription services, and more,&#8221; Mark Armstrong said.</p>\n<p>This change is twelve years in the making. With the exception of WordPress VIP, customers have not had the ability to install third-party themes and plugins on WordPress.com.</p>\n<h2>Customers Can Only Install Custom Plugins Through The WP-Admin Interface</h2>\n<p>Customers can install plugins or themes from the WordPress.org directories or they can upload custom themes and plugins. WordPress.com has two user interfaces, one that resembles Calypso and the other is WP-Admin.</p>\n<p>Here is what adding plugins looks like using the Calypso interface. Plugins are displayed from the WordPress.org plugin directory with no way to upload a custom plugin.</p>\n<img />Adding Plugins on WordPress.com Through The Calypso Interface\n<p>This is what adding plugins looks like using the WP-Admin interface. This interface has a button that allows customers to upload a custom plugin. Automattic is aware of the discrepancy and says they&#8217;re working on streamlining both interfaces.</p>\n<img />Adding Plugins Through WP-Admin on WordPress.com\n<h2>Customers Can Upload Non 100% GPL Licensed Code to WordPress.com</h2>\n<p>The ability to upload a custom theme or plugin truly opens the door for subscribers to customize their sites. But it also allows customers to use themes and plugins that are not 100% GPL licensed. Matt Mullenweg, CEO of Automattic, has <a href=\"https://wordpress.org/news/2009/07/themes-are-gpl-too/\">made it clear</a> in the past that he will only support plugins and themes that are 100% GPL.</p>\n<blockquote><p>Even though graphics and CSS aren’t <em>required</em> to be GPL legally, the lack thereof is pretty limiting. Can you imagine WordPress without any CSS or JavaScript? So as before, we will only promote and host things on WordPress.org that are 100% GPL <a href=\"http://en.wikipedia.org/wiki/License_compatibility\">or compatible</a>.</p></blockquote>\n<p>Mullenweg has used his <a href=\"http://designcrumbs.com/automatically-blackballed\">influence in the past</a> to provoke marketplaces such as Envato to provide a 100% GPL license option to its authors. Authors who choose not to sell their items with the 100% GPL license are excluded from being able to sponsor or speak at WordCamps.</p>\n<p>Although the above quote references WordPress.org, WordPress.com is a platform that Mullenweg controls. It&#8217;s odd that the ability to upload a theme or plugin that is not 100% GPL exists on WordPress.com. I believe the feature is an oversight and will be removed in the immediate future ensuring that only themes and plugins from the official directories are allowed to be used.</p>\n<h2>Managed WordPress Hosts Have Reasons to Be Concerned</h2>\n<p>Responses to the news from members of the WordPress community are mixed. Phil Crumm, Director of Strategic Opportunities at 10up, <a href=\"https://medium.com/@philcrumm/the-curious-conundrum-of-the-new-wordpress-com-business-plan-b0044ad57acd\">published a great article</a> that examines the potential impacts this move will have on the managed WordPress hosting ecosystem and its community:</p>\n<blockquote>\n<p id=\"8b34\" class=\"graf graf--p graf-after--h3\">Within the WordPress community, there’s long been a notion that &#8216;more users on WordPress&#8217; is universally good. Until now, that’s been difficult to argue: an expansive ecosystem has developed over the last decade, and many now make their living off of WordPress.</p>\n<p id=\"2813\" class=\"graf graf--p graf-after--p graf--trailing\">Despite that, WordPress.com’s Business Plan now feels like it’s oriented towards cannibalizing users from elsewhere within that ecosystem — from sites that may have &#8216;grown up&#8217; and moved to another hosting provider to those that now may not know that the broader ecosystem even exists — which is objectively a step backwards for the WordPress community.</p>\n</blockquote>\n<p><a href=\"https://perezbox.com/\">Tony Perez</a>, co-founder and CEO of Sucuri, says the <a href=\"https://perezbox.com/2017/08/automattics-push-managed-wordpress-potential-impacts-hosting-ecosystem/\">implications are gravest</a> to managed WordPress hosts. &#8220;The biggest impacts however are likely to be towards those hosting companies that have invested resources (both people and dollars) into creating a vibrant Managed WordPress hosting business ecosystem,&#8221; Perez said.</p>\n<p>&#8220;Long are the days when the market was defined by Page.ly and WPEngine. Today I would consider the space to be saturated, with more flavors of Managed WordPress than ice cream at a Baskin-Robbins.&#8221;</p>\n<p><a href=\"http://chrislema.com/\">Chris Lema</a>, a member of Liquid Web&#8217;s Leadership team, <a href=\"https://perezbox.com/2017/08/automattics-push-managed-wordpress-potential-impacts-hosting-ecosystem/#comment-3456606874\">responded to the article</a> saying it&#8217;s rare for manufactures to enter the same market as their distributors or partners.</p>\n<p>&#8220;While not impossible, we rarely see manufacturers get into the same business as their distributors or retail partners,&#8221; Lema said.</p>\n<p>&#8220;That&#8217;s because it can create a lot of unwanted, unplanned for, unintended secondary consequences. But to inexpensive hosts, this is one of those head-turners, because they were assured, for oh so long, that this wasn&#8217;t the game Automattic was getting into.</p>\n<p>&#8220;But Automattic is not just a nice community player. They&#8217;re a business. With investors. And they have to think about their own bottom line. So while it&#8217;s not surprising, I think you&#8217;re right that hosts have the most to be thinking about.&#8221;</p>\n<p>Others like Scott Bolinger, have expressed cautious optimism regarding the change.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">3rd party plugins and themes can now be used on <a href=\"https://t.co/eNa4NCrrPO\">https://t.co/eNa4NCrrPO</a>. This is great news, although how great remains to be seen. <a href=\"https://t.co/TntfJJ9sLD\">https://t.co/TntfJJ9sLD</a></p>\n<p>&mdash; Scott Bolinger (@scottbolinger) <a href=\"https://twitter.com/scottbolinger/status/894627296648114176\">August 7, 2017</a></p></blockquote>\n<p></p>\n<p>Some theme and plugin authors see it as a growth opportunity. Josh Pollock, founder of <a href=\"https://calderaforms.com/\">CalderaWP,</a> is excited to see WordPress.com become a quality hosting option for his users.</p>\n<p>&#8220;As a plugin author, I like not just more places for my plug-in to be used, but more quality hosting options,&#8221; Pollock said. &#8220;Dealing with sub-optimal environments is the hardest part of being a plug-in author. I&#8217;m excited about more users and having those users be on a quality platform.&#8221;</p>\n<h2>How Much Pie Does Automattic Want?</h2>\n<p>WordPress.com offering a subset of customers the ability to access the incredible third-party WordPress plugin and theme ecosystem is a huge development, but it leaves me with a few questions. First, why is WordPress.com only now offering this feature? Why wasn&#8217;t it available years ago?</p>\n<p>WordPress.com is now competing head-to-head with managed hosts. As <a href=\"https://ma.tt/2016/12/wp-growth-council/\">initiatives are established</a> to grow the WordPress pie for all, how much of that pie does Automattic want for itself? Considering Automattic is a business backed by investors, does it matter how much they want or get?</p>\n<p>How do you feel about WordPress.com allowing subscribers to tap into the WordPress.org ecosystem?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Aug 2017 07:12:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: User Tracking to be Removed from Gutenberg in Upcoming 0.8.0 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=74044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/user-tracking-to-be-removed-from-gutenberg-in-upcoming-0-8-0-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9564:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/asystole.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.savingchicagocpr.com/termination-resuscitation-efforts/\">Saving Chicago CPR</a>\n<p>The opt-in user tracking that was <a href=\"https://wptavern.com/gutenberg-0-7-0-adds-opt-in-usage-tracking\" target=\"_blank\">added to Gutenberg 0.7.0</a> will be pulled from the plugin in the upcoming 0.8.0 release. The data collection included in last week&#8217;s release reignited the <a href=\"https://core.trac.wordpress.org/ticket/38418\" target=\"_blank\">discussion regarding adding telemetry to WordPress</a>.</p>\n<p>James Nylen and an Automattic engineers involved in Gutenberg added the feature with the goal of improving the editor based on usage patterns. Nylen said the approach they used was very similar to Calypso&#8217;s event tracking code and that it would provide &#8220;a very useful technique to collect user experience data.&#8221; They had planned to use the data to inform various decisions, such as default order for blocks and whether some blocks are less suitable for core. Gutenberg contributors were looking into making the tracking its own module so it could be useful for other WP feature plugins and core.</p>\n<p>Shortly after the feature was added to Gutenberg, contributors began to revisit the Telemetry discussion on WordPress Trac. The topic of telemetry for core had been tabled earlier this year, as it did not fall within the three core focus areas for WordPress development in 2017. Participants requested the ticket be reopened for discussion looking toward 2018 in light of Gutenberg adding opt-in tracking.</p>\n<p>&#8220;I think it&#8217;s a terrible idea for Gutenberg, too,&#8221; Matt Mullenweg commented on the ticket. &#8220;I doubt that anything actionable or useful will come of it that couldn&#8217;t be obtained by non-data-collecting means.&#8221;</p>\n<p>Twelve hours later, James Nylen <a href=\"https://make.wordpress.org/core/2017/08/06/opt-in-usage-tracking-in-gutenberg/#comment-32882\" target=\"_blank\">commented</a> on his original announcement to notify the community that tracking will be removed from Gutenberg in the 0.8.0 release:</p>\n<blockquote><p>There’s been quite a lot of discussion on this topic across the community, much of which stems from earlier discussions like <a href=\"https://core.trac.wordpress.org/ticket/38418\" target=\"_blank\">#38418</a>, which I wasn’t aware of.</p>\n<p>Usage tracking in Core and feature projects is a much bigger topic than fits into the scope of Gutenberg right now, so I’ve removed it from the GitHub repo, and it will be removed in the 0.8 Gutenberg release.</p>\n<p>The data that it was tracking, while interesting, probably wouldn’t have been a significant factor in the long-term growth and development of Gutenberg. The discussion surrounding the data collection, however, would take up a disproportionate amount of the team’s time.</p></blockquote>\n<p>Nylen said the data collected by the plugin thus far will be deleted after 0.8 rolls out and that since it&#8217;s so early in Gutenberg&#8217;s development there was &#8220;not enough data collected to provide any sort of picture of usage.&#8221;</p>\n<h3>WordPress Telemetry Advocates Continue Lobbying for Opt-In Data Collection</h3>\n<p>The discussion about whether or not WordPress needs telemetry has continued in the form of tweetstorms, as data collection advocates make the case for data-driven decision making.</p>\n<p>&#8220;The decision not to capture metrics (telemetry) from WordPress is one that continues to have a large impact on what we (don&#8217;t) know,&#8221; Liquid Web VP of Product Chris Lema <a href=\"https://twitter.com/chrislema/status/895136427977068544\" target=\"_blank\">said</a>. &#8220;As we&#8217;re trying to make decisions about Gutenberg and metaboxes, we might ask, how big a problem is this, by number of plugins or sites. But we don&#8217;t know because we decided that we can always iterate WordPress, like we&#8217;ve always done. It&#8217;s true that we&#8217;ve done that before, but that doesn&#8217;t mean it&#8217;s either the wisest approach, nor the least risky. With so many options today, will people necessarily return? The more logical approach, in my mind, is to capture as much data as possible and to make it as public as possible, so we can all review.&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">If the problem were lack of data, we could easily produce terabytes per day.</p>\n<p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/895506034533453825\">August 10, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">seconded with the power of 1000 suns</p>\n<p>&mdash; joe guilmette <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f1f9-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" /> (@travlbum) <a href=\"https://twitter.com/travlbum/status/895539950933782528\">August 10, 2017</a></p></blockquote>\n<p></p>\n<p><a href=\"https://mor10.com/the-case-for-wordpress-telemetry/\" target=\"_blank\">WordPress Telemetry proposal</a> author Morten Rand-Hendriksen joined in the discussion with another <a href=\"https://twitter.com/mor10/status/895299336375902209\" target=\"_blank\">tweetstorm</a>:</p>\n<blockquote><p>WordPress needs a core method for collecting quantitative user data through telemetry (metrics). One of the biggest challenges WordPress faces is the lack of reliable data about global day-to-day use. Like most Open Source projects, WordPress has relied on community feedback as its primary data source, which is fine for a small project. The problem is WordPress is a Very Big Project with global reach and the majority of its users never interface with the community. </p>\n<p>I like to say we, the people who talk about, provide feedback for, and design/develop WordPress are the 1%. It might be more like 0.1%. Making decisions based on the traditional community feedback model is making decisions without knowing anything about the majority of users. Some will argue this is fine, that WordPress is developed by those who show up. That&#8217;s not a workable or responsible model for a project. We, the people who build WordPress, have a duty of care to the people we build it for. And those people are not us. &#8216;We can just do user testing,&#8217; you say? Sure. Let&#8217;s do proper qualitative user testing. That requires staffing, funding, and infrastructure. User testing for a project like WordPress is non-trivial. It requires professional analysis.</p></blockquote>\n<p>Rand-Hendriksen&#8217;s tweetstorm continued with a summary of his telemetry proposal which would be opt-in based on a plugin prompted from core. The plugin would anonymize all collected data and allow for targeted data collection based on research needs. He proposes that the data be stored on servers owned by the community, separate from corporate interests, so the data can be shared openly to ensure transparency. The <a href=\"https://core.trac.wordpress.org/ticket/38418\" target=\"_blank\">ticket</a> for this feature request is currently closed.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This discussion belongs in Trac in an open ticket. Closing it down because one person disagrees is not the Open Source way.</p>\n<p>&mdash; MortenRandHendriksen (@mor10) <a href=\"https://twitter.com/mor10/status/895307240122368001\">August 9, 2017</a></p></blockquote>\n<p></p>\n<p>&#8220;There’s a ton going on, and it’s far more important than built-in big brother centralized tracking,&#8221; Mullenweg <a href=\"https://twitter.com/photomatt/status/895678580935491588\" target=\"_blank\">said</a> in response to Rand-Hendriksen&#8217;s tweetstorm. &#8220;Do it as a plugin or with a host and show it informs a decision that we wouldn’t have taken otherwise. And remember that past usage is not a good predictor of future success, or what the world needs. We need to build iPhones not Blackberries.&#8221;</p>\n<p>During the <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\" target=\"_blank\">2016 State of the Word</a> address, Mullenweg proposed a new structure for core releases in 2017 where he would be putting on the &#8216;product lead&#8217; hat and have design and user testing lead the way. As feature requests have popped up outside of the three core focus areas, Mullenweg has had to systematically shut them down or put them on hold for later in order to keep Gutenberg on track.</p>\n<p>However, it&#8217;s not surprising that the engineers leading the Gutenberg project, most of whom are employed by Automattic, wouldn&#8217;t think twice about adding user tracking. The company has <a href=\"https://data.blog/\" target=\"_blank\">a blog entirely devoted to data</a> where its data scientists write about the data pipelines they have built to help the company create a sustainable business. Historically, Automattic has strongly embraced using data in making decisions, which is why Calypso has event tracking built into it. Mullenweg is taking a different product leadership approach with the open source WordPress project.</p>\n<p>&#8220;For people unhappy with our direction, no amount of data will change their minds,&#8221; Mullenweg said in response to critics on Twitter. &#8220;The results will tell. I’m happy to stand by them the past 14 years, and believe the next 14 will validate our approach.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Aug 2017 02:08:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: WooCommerce Forks select2, Releases selectWoo as a Drop-In Replacement with Improved Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/woocommerce-forks-select2-releases-selectwoo-as-a-drop-in-replacement-with-improved-accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4160:\"<p>The WooCommerce development team has <a href=\"https://woocommerce.wordpress.com/2017/08/08/selectwoo-an-accessible-replacement-for-select2/\" target=\"_blank\">forked select2</a> to create a more accessible, drop-in replacement library called selectWoo. <a href=\"https://select2.github.io/\" target=\"_blank\">select2</a> is a widely used jQuery-based library for making custom drop down menus. Many users are wondering if the project has been abandoned, because the repository hasn&#8217;t seen any activity since February and 115 pull requests have piled up.</p>\n<p>In the interest of fixing some long-standing accessibility issues with the library, WooCommerce opted to fork it and has merged in some of the PRs that were submitted to the original project. SelectWoo is backwards-compatible and can be used the same way as select2 by simply replacing the select2.js file. It has been optimized for WordPress plugin development and can optionally be initialized with .selectWoo() in order to run alongside other versions of select2 that may be used by other plugins on the site.</p>\n<p>SelectWoo makes many improvements for those who are using screen readers, but it needs more accessibility testing. <a href=\"https://github.com/woocommerce/selectWoo/releases/tag/woo-1.0.0-beta.1\" target=\"_blank\">Beta 1</a> is availabe on GitHub. The WooCommerce team has even created a <a href=\"https://woocommerce.github.io/selectWoo/accessibility-testing/\" target=\"_blank\">testing page</a> with different example pages so those using screen-reading software can easily test for bugs.</p>\n<p>Forking is usually a last resort scenario for extending popular open source libraries, but the WooCommerce team wanted the flexibility of improving the project on their own timeline. One concerned developer asked the team what will happen in the future if select2 gets back on track and why they didn&#8217;t just submit pull requests to the select2 repository.</p>\n<p>&#8220;With a fork we can at least get things merged in to meet our own schedule, rather than waiting/relying on others or running custom versions,&#8221; WooCommerce lead developer Mike Jolley said. &#8220;There are other benefits, too, such as allowing our version to be namespaced to avoid conflicts in WP admin. The fork is public. Our changes can be merged back, when/if the project picks up again.&#8221;</p>\n<p>Both WordPress and Drupal core contributors have been working to <a href=\"https://github.com/select2/select2/issues/3744\" target=\"_blank\">address accessibility issues in select2</a> since 2015 when the WP Accessibility Team <a href=\"https://make.wordpress.org/accessibility/2015/09/07/accessibility-usertest-select2/\" target=\"_blank\">performed extensive testing on the library</a> to see if it was fit for use in core. Some initial planning work happened but work on these issues stalled out as select2&#8217;s maintainers became unavailable.</p>\n<p>&#8220;I&#8217;d do it with PRs if I thought they would get merged in, but I doubt they will,&#8221; WooCommerce developer Claudiu Lodromanean <a href=\"https://github.com/select2/select2/issues/3744#issuecomment-320464534\" target=\"_blank\">said</a>. &#8220;There&#8217;s been no action in this repo in about six months and the fork contains some PRs that have been waiting to get merged here for a very long time.&#8221;</p>\n<p>Forking a project can needlessly fragment its contributors by causing them to have to choose one or the other, especially as the projects diverge down the line. Motivated contributors may submit multiple PRs across both projects for improvements but most will simply contribute back to the project they use. Select2&#8217;s maintainers have not published any news about why the project has gone dormant.</p>\n<p>&#8220;There are <a href=\"https://github.com/select2/select2/pulls\" target=\"_blank\">over 100 PRs in the select2 repo</a> unmerged,&#8221; Jolley said in response to commenters asking about the necessity of the fork. &#8220;Some of these we actually need, so with the fork we’re free to merge these as needed. The accessibility issues are hurting users today, so we cannot really afford to wait.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2017 03:54:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WPWeekly Episode 284 – Catching Up with David Peralty\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=74024&preview=true&preview_id=74024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wpweekly-episode-284-catching-up-with-david-peralty\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2867:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://peralty.com/\">David Peralty</a>. Peralty is a prolific writer with more than 30K articles published online for various media outlets. He also co-hosted WordPress Weekly episodes 41-75 in 2009.</p>\n<p>We discuss the rise and evolution of blog networks over the years, the current state of WordPress development, and what he thinks of Gutenberg.</p>\n<p>We have a great conversation about working remotely and how working in an office with great people focused on the same goal can be an energizing experience. Later in the show, Jacoby and I discuss the news of the week, including the idea of opt-in usage data tracking in WordPress.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/publishers-are-moving-back-to-wordpress-after-short-experiments-with-medium\">Publishers Are Moving Back to WordPress After Short Experiments with Medium</a><br />\n<a href=\"https://wptavern.com/trademark-trial-and-appeal-board-dismisses-automattics-trademark-dispute-against-chris-pearson\">Trademark Trial and Appeal Board Dismisses Automattic’s Trademark Dispute Against Chris Pearson</a><br />\n<a href=\"https://wptavern.com/gutenberg-0-7-0-adds-opt-in-usage-tracking\">Gutenberg 0.7.0 Adds Opt-In Usage Tracking</a><br />\n<a href=\"https://wptavern.com/gutenberg-development-team-confirms-meta-box-api-will-not-be-formally-deprecated\">Gutenberg Development Team Confirms Meta Box API Will Not be Formally Deprecated</a><br />\n<a href=\"https://wptavern.com/wordpress-core-fields-api-project-sees-renewed-interest\">WordPress Core Fields API Project Sees Renewed Interest</a></p>\n<h2>Picks of the Week:</h2>\n<p>Comment moderation is not the same as censorship, or is it?</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://halfelf.org/2013/censorship-in-moderation/\">Censorship in Moderation</a></p></blockquote>\n<p></p>\n<p><a href=\"https://github.com/rmccue/not-trac\">Not Trac</a> by Ryan McCue, connects to WordPress.org&#8217;s Trac instance via XML-RPC. Before using, please read McCue&#8217;s warnings about usernames and passwords.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 16th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #284:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Aug 2017 00:43:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WordPress Foundation to Sponsor Open Source Educational Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73970\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wordpress-foundation-to-sponsor-open-source-educational-events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3313:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/06/open-source.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/79777096@N00/6866996865\">16th st</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nd/2.0/\">(license)</a>\n<p>The WordPress Foundation is <a href=\"http://wordpressfoundation.org/2017/call-for-organizers-introduction-to-open-source/\" target=\"_blank\">sponsoring a new series of workshops and training events</a> that will introduce people to WordPress and related open source software. The program targets communities in Latin and South America, Africa, Oceania, and Asia.</p>\n<p>&#8220;Specifically, we want to shine more light on the potential of open source software in countries where there is less participation in OSS projects,&#8221; WordPress Community Team leader Andrea Middleton said. &#8220;To help spread the word about the potential that open source has to offer, we’d like to provide financial support for two educational events this year, to be organized in parts of the world with less participation in open source.&#8221;</p>\n<p>After the success of the <a href=\"https://wptavern.com/wordcamp-incubator-program-to-launch-in-indonesia-zimbabwe-and-columbia\" target=\"_blank\">WordCamp Incubator Program</a>, which brought three new camps to Indonesia, Zimbabwe, and Colombia, there is some evidence that initiatives to bring WordPress to other parts of the world can have valuable returns. <a href=\"https://wptavern.com/harare-zimbabwe-to-host-its-2nd-wordcamp-november-4-2017\" target=\"_blank\">Harare is hosting its second WordCamp</a> in November and the local meetup group has nearly doubled over the past year. The other camps had similarly successful events and growth in meetup numbers.</p>\n<p>WordCamp Harare organizer Thabo Tswana said that one of the biggest impacts that the first WordCamp had was to introduce local attendees to the WordPress community. WordPress software is well-known across the world but many do not know that there is a strong community behind the project that they can connect with.</p>\n<p>The WordPress Foundation is looking for organizers to host &#8220;Introduction to Open Source&#8221; events that will be structured as two-hour workshops using <a href=\"https://make.wordpress.org/training/handbook/user-lessons/what-is-open-source/\" target=\"_blank\">training</a> <a href=\"https://make.wordpress.org/training/handbook/user-lessons/what-can-you-do-with-wordpress/\" target=\"_blank\">materials</a> available in the WordPress handbook. The goal is to introduce attendees to the world of open source software, the GPL license, and how it is important for WordPress as an open source project.</p>\n<p>The Foundation is subsidizing the events (up to $500) so they will be free for anyone to attend. A <a href=\"http://wordcampcentral.polldaddy.com/s/open-source-training-organizer-application\" target=\"_blank\">10-question application</a> is open for those who want to organize an event in 2017. The call for organizers says that preference will be given to organizers who are already members of a group that is part of WordPress&#8217; meetup chapter program and areas where no WordCamp has previously been organized. Applications close August 21 and successful applicants will be notified by September 8.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2017 19:19:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Post Status: Publish Conference, in pictures\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=38424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://poststatus.com/publish-conference-pictures/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34326:\"<p>Pictures from <a href=\"https://poststatus.com/publish\">Post Status Publish</a> were almost all taken by <a href=\"https://poststatus.com/people/brian-richards/\">Brian Richards</a>, unless they are pictures of Brian Richards. I took those.</p>\n<p>We had a great time learning and networking in Atlanta, and here&#8217;s a snippet of our time together. The event consisted of two full days of talks from some pretty amazing speakers.</p>\n<p>Special thanks to <a href=\"https://www.liquidweb.com/managedwordpress/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Liquid Web</a> for being our platinum sponsor, and to <a href=\"https://jetpack.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Jetpack</a>, <a href=\"https://pantheon.io/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Pantheon</a>, and <a href=\"https://www.siteground.com/wordpress-hosting.htm/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">SiteGround</a> for being gold sponsors. Without them, and our wonderful attendees of course, none of this would be possible.</p>\n<p>Video is being processed and will be available to all attendees, and we&#8217;re working out how exactly to make them available for other folks who may want to see the sessions.</p>\n\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-4/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-4-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-2/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-2-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-1/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-1-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-3/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-3-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-5/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-5-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-6/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-6-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-7/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-7-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-8/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-8-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-9/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-9-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-10/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-10-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-11/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-11-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-12/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-12-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-13/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-13-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-14/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-14-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-15/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-15-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-16/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-16-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-17/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-17-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-18/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-18-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-19/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-19-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-20/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-20-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-21/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-21-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-22/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-22-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-23/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-23-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-24/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-24-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-25/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-25-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-26/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-26-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-27/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-27-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-28/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-28-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-29/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-29-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-30/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-30-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-31/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-31-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-32/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-32-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-33/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-33-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-34/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-34-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-35/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-35-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-36/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-36-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-37/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-37-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-38/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-38-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-39/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-39-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-40/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-40-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-41/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-41-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-42/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-42-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-43/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-43-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-44/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-44-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-45/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-45-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-46/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-46-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-47/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-47-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-48/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-48-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-49/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-49-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-50/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-50-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-51/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-51-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-52/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-52-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-53/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-53-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-54/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-54-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-55/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-55-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-56/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-56-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-57/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-57-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-58/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-58-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-59/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-59-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-60/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-60-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-61/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-61-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-62/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-62-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-63/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-63-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-64/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-64-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-65/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-65-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-66/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-66-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-68/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-68-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-67/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-67-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-69/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-69-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-70/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-70-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-71/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-71-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-72/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-72-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-73/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-73-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-74/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-74-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-75/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-75-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-76/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-76-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-77/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-77-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-78/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-78-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-79/\"><img width=\"100\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-79-100x150.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-80/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-80-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-81/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-81-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-82/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-82-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-83/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-83-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-84/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-84-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-85/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-85-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-86/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-86-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-87/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-87-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-88/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-88-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-89/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-89-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-90/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-90-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-91/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-91-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-92/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-92-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-93/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-93-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-94/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-94-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-95/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-95-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-96/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-96-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-97/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-97-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-98/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-98-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-99/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-99-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-100/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-100-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-101/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-101-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-102/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-102-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-103/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-103-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-104/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-104-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-105/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-105-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-106/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-106-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-107/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-107-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\n<a href=\"https://poststatus.com/publish-conference-pictures/publish-conference-atlanta-post-status-108/\"><img width=\"150\" height=\"100\" src=\"https://cdn.poststatus.com/wp-content/uploads/2017/08/publish-conference-atlanta-post-status-108-150x100.jpg\" class=\"attachment-thumbnail size-thumbnail\" alt=\"\" /></a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2017 18:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"HeroPress: WordPress Ate My Life—In a Good Way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://heropress.com/essays/wordpress-ate-life-good-way/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-ate-life-good-way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11502:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/080917-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Thanks to the WordPress meetup, I found focus, fun, friends, and what passes for fame.\" /><p>I did not spend my childhood wanting to grow up to be a WordPress consultant. Given that I was born in 1967, long before the World Wide Web even existed, I would have had to be clairvoyant to aspire to any kind of web development. I was intrigued by computers when I first encountered the TRS-80 at the age of 12, but other than learning a few lines of BASIC, I didn’t pursue programming.</p>\n<p>Parenthetically, I don’t think it was because girls weren’t encouraged to become programmers. This was even before the days of the Control Data Institute commercials on TV. Programming as a career for anyone at all was not in the minds of the general public, at least not in Ohio. And although I thought computers were cool (being a science fiction fan and all), I didn’t have any clear sense of what you could do with them. I never made the mental connection between writing a 10-line program in BASIC and eventually creating something like a video game or a word-processing program.</p>\n<p>During my freshman year in college, I fell into the Classics Vortex, and ended up going to graduate school to study Greek and Latin drama. I expected to get my degree and a university teaching job.</p>\n<blockquote><p>I spoke at a few conferences and published a few papers. And I discovered the World Wide Web.</p></blockquote>\n<p>I’d gotten online in 1985, also in my freshman year at Brown. We were on BITNET and someone in the computer center showed me how to get onto Relay when I was down their using the mainframe to write essays with. (Fly, sledgehammer, boom.) The Internet came into being about the time I got to graduate school in 1989, and someone showed me the Web in 1994. It blew me away, because a visual medium of communication is vastly superior to a text-based medium when you’re talking about theatrical productions.</p>\n<p>By the end of 1994 I’d moved to England and created my first web page. (We didn’t have websites in those days, just ‘pages.’ Even if there were lots of pages. And wow, I just wrote that in inverted commas rather than quotation marks, as if my brain shifted itself back to Britain just thinking about it.)</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/DIDASKALIA-1998-min.png\"><img class=\"size-large wp-image-2017\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/DIDASKALIA-1998-min-1024x506.png\" alt=\"Sallie’s first website, Didaskalia, as it was in 1998\" width=\"960\" height=\"474\" /></a>Sallie’s first website, Didaskalia, as it was in 1998\n<p>So you’d think that maybe, from there, I would have gotten into a career in web development whether or not WordPress had ever existed, but that wasn’t what actually happened.</p>\n<h3>When Your Body Isn&#8217;t Your Friend</h3>\n<p>While I was still in graduate school, I developed a debilitating chronic illness that prevented me from finishing my PhD due to a combination of physical and cognitive problems, and although I started to get better at first, by the end of 1998, when I had to return to the US, my condition had worsened to the point where I wasn’t sure I’d ever be able to work. I spent about 18 months just going to doctors and therapists and support groups. When I did start working, it was as a caregiver, doing extremely simple tasks, because my confidence in my ability to do knowledge work of any kind was so badly damaged.</p>\n<p>I eventually started doing more kinds of things to earn money: clerical work, basic tech support, writing. Somewhere in there, I helped a couple of people with their websites, even though I’d missed a whole lot of the evolution of the Web. (I’m not at all sorry to have skipped Flash.) I was feeling considerably better thanks to new medication, and easing my way toward being self-supporting, but at the time I discovered WordPress in 2005, I was suffering from a bad case of Multiple Business Personality Disorder. I had a number of useful skills, but no clear focus or unifying principle.</p>\n<p>I had started my first blog on Blogger in January 2005, but within a few months I found myself hanging out with a lot of podcasters, and almost all of them used WordPress because the PodPress plugin (RIP) made it so easy to publish feeds with enclosures. I started to explore WordPress further, and within a few years had migrated my blog from Blogger because they stopped allowing you to self-host your blog. WordPress had meanwhile introduced pages, making it possible to build an entire website rather than having an HTML website and a WordPress blog.</p>\n<h3>Finding Community</h3>\n<p>But WordPress would probably have remained a sideline if I hadn’t started going to WordPress meetups. I was at a podcasting meetup in San Francisco in late 2008 when someone mentioned a WordPress meetup in SF. I went to a meeting (I think in January 2009) and someone THERE mentioned that there was a WordPress meetup starting in the East Bay, closer to where I lived. I went to that meeting in February 2009…and the rest is history.</p>\n<blockquote><p>It wasn’t that the first meetup was such an amazing experience. The organizer was new at running a meetup and we were all strangers to each other. But somehow talking about our shared interest in WordPress just made us more interested.</p></blockquote>\n<p>I’ve always been a service junkie, and I’d been involved with other networking groups for years, so it wasn’t long before I found myself co-organizer, helping to plan and run the meetup and welcoming new members as they joined. Through the meetup, I started to learn more about the WordPress community and open source software. A group of us went to WordCamp SF 2009.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/WordCampSF-2010-min.jpg\"><img class=\"size-full wp-image-2019\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/WordCampSF-2010-min.jpg\" alt=\"East Bay WordPress Meetup members at WCSF 2010\" width=\"1776\" height=\"2336\" /></a>East Bay WordPress Meetup members at WCSF 2010\n<p>Because of the meetup, I made more and more connections in the wider WordPress community. Because of the meetup, I learned a lot more about WordPress than I would have on my own, in part because I often had to teach it. Because of the meetup, more WordPress-related work came to me. I started to learn more code, little bits and fragments at a time. WordPress drew me in deeper and deeper as time progressed. In 2012, I officially registered WP Fangirl, and since that time, almost all my income has come from WordPress work.</p>\n<h3>All the WordCamps</h3>\n<p>I went to all the San Francisco WordCamps between 2009 and 2014, after which WordCamp US was instituted. By the time the first WordCamp Sacramento was announced in 2015, all the meetup presentations I’d done gave me the confidence to submit a talk. It was accepted. I’ve since spoken at WCLAX 2016 and WCSAC 2016. I’m working on my presentation for WCSAC 2017. (I’d love to travel for more meetups, but it’s not in the budget.)</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/Sallie_Goetsch-min.jpg\"><img class=\"size-full wp-image-2021\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/08/Sallie_Goetsch-min.jpg\" alt=\"Speaking at WordCamp LAX 2016\" width=\"1920\" height=\"1086\" /></a>Speaking at WordCamp LAX 2016\n<p>The experience I had with the Meetup made me want to connect more and more with other WordPress people, and to help out where I could. As I said, I’m a service junkie, so I readily embraced the idea of giving back to the community. I’m not a good enough developer (yet, anyway) to be a core contributor, but there are lots of ways to contribute. The main one, in my case, is organizing the meetup, though it took me until 2016 to join the official WordPress Community meetup program.</p>\n<p>I was also very active in the main WordPress LinkedIn group for several years, which led to O’Reilly hiring me as the technical reviewer for WordPress: The Missing Manual. (It may also have contributed to the gig I had in 2011 making WordPress videos for Peachpit Press and the one in 2012 and 2013 teaching WordPress for Mediabistro.)</p>\n<p>I started listening to WordPress podcasts in about 2006, though WP Weekly is the only one of those early shows that’s still around. There are tons of new WP podcasts now, more than I can keep up with. I got invited to participate in one, the WP-Tonic panel, starting in 2015. You can hear me being mouthy and opinionated there almost every week. I follow WordPress people on Twitter, belong to WordPress Slack teams, and have been known to dream about WordPress.</p>\n<p>Thanks to the WordPress meetup, I found focus, fun, friends, and what passes for fame. I’m still working on fortune, but I can tell you that the secret to the many great referrals I’ve gotten from my extensive network of WordPress connections is this: don’t go into it looking for what you can get. Just concentrate on what you can give, and never stop learning.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress Ate My Life—In a Good Way\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Ate%20My%20Life%E2%80%94In%20a%20Good%20Way&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-ate-life-good-way%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Ate My Life—In a Good Way\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-ate-life-good-way%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-ate-life-good-way%2F&title=WordPress+Ate+My+Life%E2%80%94In+a+Good+Way\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Ate My Life—In a Good Way\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-ate-life-good-way/&media=https://heropress.com/wp-content/uploads/2017/08/080917-min-150x150.jpg&description=WordPress Ate My Life—In a Good Way\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Ate My Life—In a Good Way\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-ate-life-good-way/\" title=\"WordPress Ate My Life—In a Good Way\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-ate-life-good-way/\">WordPress Ate My Life—In a Good Way</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2017 12:00:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Sallie Goetsch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Live from Publish: Challenges facing the WordPress Economy — Draft podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=38415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://poststatus.com/live-publish-challenges-facing-wordpress-economy-draft-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1640:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p>In this episode, Brian and Joe are live at Post Status Publish and answer questions from the conference audience. They are asked about mistakes they think the WordPress product ecosystem is making, the challenges of working remotely, and many more existential questions.</p>\n<a href=\"https://audio.simplecast.com/0550d90d.mp3\">https://audio.simplecast.com/0550d90d.mp3</a>\n<p><a href=\"https://audio.simplecast.com/0550d90d.mp3\">Direct Download</a></p>\n<p>Publish was a lot of fun, and we’ll have more audio, video, and pictures available over the coming weeks.</p>\n<h3>Sponsor: Liquid Web</h3>\n<p><span><a href=\"https://www.liquidweb.com/managedwordpress/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">Liquid Web</a> was the platinum sponsor of the Publish podcast, and therefore this episode of the podcast as well. If you haven’t tried Liquid Web’s Managed WordPress product, it’s time. They are doing awesome work in this space for mission critical sites.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2017 00:29:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress Core Fields API Project Sees Renewed Interest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73965\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wordpress-core-fields-api-project-sees-renewed-interest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5551:\"<p>As work continues at a feverish pace <a href=\"https://make.wordpress.org/core/2017/08/08/discovering-gutenberg-and-next-steps/\">on Gutenberg</a>, many developers throughout the community are <a href=\"https://github.com/WordPress/gutenberg/issues/952\">engaging in discussions</a> on how <a href=\"https://wptavern.com/gutenberg-development-team-confirms-meta-box-api-will-not-be-formally-deprecated\">meta boxes will be handled</a> in the new editor. The team is <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320644682\">considering various solutions</a> and <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320638392\">some </a>have <a href=\"https://twitter.com/scottkclark/status/894488147966517248\">suggested</a> that a Fields API in core would have made the future of meta boxes less of an issue.</p>\n<p>I reached out to <a href=\"https://www.scottkclark.com/\">Scott Kingsley Clark</a>, lead developer of the <a title=\"Pods Framework for WordPress\" href=\"http://pods.io/\" target=\"_blank\" rel=\"noopener\">Pods Framework</a> and one of the main contributors to the <a href=\"https://make.wordpress.org/core/tag/fields-api/\">Fields API project</a>. Clark explains what the Fields API is, its current status, its relationship to the meta box discussions, and how to contribute.</p>\n<p><strong>For those who don&#8217;t know, what is the Fields API project? How would it impact users?</strong></p>\n<p>It’s a <a href=\"https://github.com/sc0ttkclark/wordpress-fields-api\">feature proposal</a> for WordPress core to allow registering fields to different screens in the admin area through a single API. For posts, this would add new meta boxes and fields within them. For users, it would add new sections and fields to the profile screen. The goal is to integrate with all of the different admin screens including, Posts, Terms, Users, Media, and Comments.</p>\n<p>Typical users would notice that the fields added by plugins they are using all have a similar look and feel. That’s really an oversimplification of what’s going on behind the scenes, but it’s one of the big benefits as well, since it shouldn’t really affect end-users beyond improving consistency of different screens and potential redesigns.</p>\n<p><strong>What has caused progress on the project to slow down?</strong></p>\n<p>I was out-of-town for a all-hands company meetup, lead organized WordCamp Dallas-Fort Worth 2016, and ran PodsCamp 2016 in Austin, TX, all in the span of about a month and a half. It was intense, but somehow last summer I thought I could manage moving too.</p>\n<p>We were in the process of showing our house, almost all of the time, so that we could sell it. The buying process was full of thorns, with a move that was pretty fun. I also started a new job at Modern Tribe in February, 2017.</p>\n<p>In retrospect, yes that was way too much but the challenge was met and the only thing that suffered was the Fields API project, which was no easy feat. It’s unfortunate, but I’m glad to be getting back into things again this month.</p>\n<p><strong>Are new contributors showing a renewed interest in the project?</strong></p>\n<p>Yes. We recently had a few people become interested in helping. When I’ve got help, I’m 300% more productive. It’s much easier to bounce ideas off of others with shared experience than it is going alone.</p>\n<p><strong>How does the API relate to how meta boxes could be handled in Gutenberg? If the API were in core, how would it influence the discussion?</strong></p>\n<p>Here’s where the irony sets in. If we were successful in getting a Fields API into WordPress before Gutenberg was a thing, the ability for Gutenberg to revamp as much as it has planned to revamp in the post editor, would not be as hindered as it is now.</p>\n<p>The biggest problem I see facing Gutenberg is reining in the scope that covers meta boxes. They need to get things working for meta boxes that are already being registered and used by plugin developers.</p>\n<p>If Fields API were a part of WordPress, they would still need to keep backwards compatibility but I could easily add a meta box with my fields into the proposed Gutenberg meta boxes (still in discussion) with just a few lines of code. Plus, my fields and meta boxes registered using the Fields API would work just fine on pre-Gutenberg sites.</p>\n<p>Another parallel here would be the User edit screen, which has had <a href=\"https://make.wordpress.org/core/2015/08/03/fields-api-request-for-review-of-direction/\">much discussion</a> about revamping the way it looks. It’s very difficult to revamp it and give it consistency without a Fields API already in place. It&#8217;s not impossible, but many problems come to the surface during any approach to &#8216;React-ify&#8217; it, utilize meta boxes, or whatever it would use.</p>\n<p><strong>How can people get involved/contribute to the Fields API project?</strong></p>\n<p>I’m very excited to have others interested in moving the project along. I’m eager to gain more interest. They can join us in <a href=\"https://wordpress.slack.com/messages/C04MWK7PZ/\">#core-fields</a> on <a href=\"https://wordpress.slack.com/\">WordPress Slack</a> if anyone is interested. They can also follow the <a href=\"https://github.com/sc0ttkclark/wordpress-fields-api\">project on GitHub</a> where pull requests are welcomed.</p>\n<p>Clark also says that the GitHub repository will be revamped soon to provide more focus on making the project a feature-plugin first instead of a core proposal.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2017 21:47:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Gutenberg Development Team Confirms Meta Box API Will Not be Formally Deprecated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73939\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/gutenberg-development-team-confirms-meta-box-api-will-not-be-formally-deprecated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8674:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2015/07/boxes.jpg?ssl=1\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/25716750@N06/2527068003\">Doors Open Toronto 2008 &#8211; Toronto Archives</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>The discussion surrounding <a href=\"https://github.com/WordPress/gutenberg/issues/952\" target=\"_blank\">how Gutenberg will handle meta boxes</a> heated up over the weekend after a participant <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320230104\" target=\"_blank\">commented</a> on the GitHub issue with concern regarding meta box support being removed from the most recent milestone.</p>\n<p>&#8220;I see this vital issue has been removed from any milestone,&#8221; @steveangstrom said. &#8220;It has been de-prioritized again while bells and whistles for blog editing get lots of work and are added to betas. This is very worrying for the future of WordPress as a CMS.&#8221;</p>\n<p>James Nylen, one of the lead developers on the project, reassured followers of the topic that the Gutenberg team has not forgotten about the issue but rather that it is &#8220;an extremely complicated issue that we are only beginning to look into, along with many, many other priorities for getting the editor working well.&#8221; He also <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320523428\" target=\"_blank\">asked</a> for help from the community in planning and testing implementations for supporting meta boxes.</p>\n<p>This response left many things unclear. Participants in the discussion, many of whom are developers concerned about about the prospect of having to rewrite all of their meta boxes as React components, are wondering why meta boxes cannot work alongside the new Gutenberg editor and why the team chose to include meta boxes in the scope of the project.</p>\n<p>&#8220;Is it possible to replace the existing TinyMCE post editor with Gutenberg while leaving the rest of the interface, including meta boxes and existing hooks, unchanged?&#8221; Kevin Hoffman asked. When Nylen clarified that Gutenberg, as written today, is intended to be a <code>post_content</code> editor, Hoffman summarized the concerns that many developers have expressed:</p>\n<blockquote><p>If Gutenberg is truly intended to be a <code>post_content</code> editor, then meta boxes should be left alone as they are not concerned with <code>post_content</code>.</p>\n<p>Furthermore the need for an API to translate PHP meta boxes into React meta boxes is a manufactured problem. It does not have to be a problem, but it has become a problem because somewhere along the line it was decided that rewriting the <code>post_content</code> editor should also completely change how meta boxes work.</p>\n<p>You&#8217;ve outlined the tremendous challenge of writing such an API in <a href=\"https://github.com/WordPress/gutenberg/pull/2251\" target=\"_blank\">#2251</a>. Translating PHP meta boxes into React for a popular custom fields solution like ACF is challenging enough, let alone trying to do so for every meta box implementation that exists today, popular or not. It does not scale.</p></blockquote>\n<p>As the Gutenberg contributors shared that they have only just begun to look into the meta box issue, it&#8217;s now clear why there is no roadmap for how the project will handle &#8220;legacy&#8221; PHP meta boxes. In July, Nylen said, &#8220;If I had to guess where we will end up here: current metaboxes will be moved to a &#8220;legacy&#8221; area and we will provide APIs, documentation, and examples for registering &#8216;new-style&#8217; metabox-block-thingies.&#8221;</p>\n<p>Plugin developers who manage meta box libraries, agencies, and other concerned parties are following the ticket to find out how to plan for the WordPress 5.0, which has been targeted as the Gutenberg release. Andrey Savchenko <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320574699\" target=\"_blank\">asked</a> if WordPress plans to formally deprecate the meta box API, which finally drew a clear answer from the team. Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320644682\" target=\"_blank\">responded</a>:</p>\n<blockquote><p><strong>&#8220;Does WordPress intend to formally deprecate Metabox API?&#8221;</strong><br />\nNo.</p>\n<p>The question that is not fully answered yet is how do meta-boxes work in the context of the Gutenberg editor. Should they remain the same or evolve? How can we move towards the design goals with the least amount of disruption possible?</p>\n<p>This issue has been lingering not due to a lack of desire, but lack of resources. The primary focus for this project is to offer a rich content editing interface that optimizes for direct manipulation of user content through the notion of blocks. (Having used meta-boxes extensively for various projects, I believe blocks can offer a better step forwards for many of those needs while providing a better user experience.)&#8221;</p></blockquote>\n<p>Ventura listed several options the team has considered for handling meta boxes and requested help from the community to build the best solution:</p>\n<ul>\n<li>If we detect a meta-box is registered we can fallback to the old interface, nothing changes.</li>\n<li>We could split editing the content and modifying meta information into two screens or stages.</li>\n<li>We can try to see how feasible it is to render these as they are (PHP) below the content: <a href=\"https://github.com/WordPress/gutenberg/pull/2251\" target=\"_blank\">#2251</a>.</li>\n<li>A theme/plugin/CPT could unregister the new interface as needed.</li>\n<li>Various items that relied on meta boxes could be converted to blocks for UI (still storing data separately).</li>\n<li>We could implement API based meta boxes extensibility like the Fields API.</li>\n</ul>\n<p>When pressed to answer the question of why meta boxes are being included in the context of the new editor, Gutenberg design lead Joen Asmussen clarified how the team decided to include meta boxes in the scope of the project:</p>\n<blockquote><p>Gutenberg did start just with the editor box. The kickoff goal was to unify multiple disparate interfaces under a single unified block interface. It quickly become apparent that in order for us to create a compelling experience revolving around this unified block interface, we had to consider the full writing flow, including settings and publishing.</p>\n<p>If the key strength of WordPress is to make it easy for anyone to create rich posts, then we can&#8217;t just design for those of us who already know how to use the editor. We have to consider users who&#8217;ve never used WordPress before, and what they expect in a modern publishing interface. Otherwise we&#8217;d just be adding cognitive load to an already heavy interface.</p></blockquote>\n<p>The question of how meta boxes will fit into the context of the Gutenberg editor is still open. Participants in the discussion are eager to have this question answered for the sake of backwards compatibility and also because it affects ongoing decisions regarding Gutenberg development and screen design.</p>\n<p>&#8220;I completely get how much work has been done towards the &#8216;screen&#8217; replacement approach,&#8221; Xavi Ivars <a href=\"https://github.com/WordPress/gutenberg/issues/952#issuecomment-320771891\" target=\"_blank\">commented</a> on the issue. &#8220;But shouldn&#8217;t a project that started with the goal of a &#8216;post content editor&#8217; replacement, have gone back to the community before deciding unilaterally that it would replace the whole editor screen?&#8221;</p>\n<p>The meta box API isn&#8217;t being deprecated but there&#8217;s also no clear path forward for how Gutenberg will support &#8220;legacy&#8221; PHP meta boxes. The Gutenberg team said the issue has not been solved due to lack of resources. The project needs community input and better communication if the team is going to land on a solution that will seamlessly usher the majority of WordPress sites into the Gutenberg era with the least amount of breakage.</p>\n<p>Currently, <a href=\"https://github.com/WordPress/gutenberg/pull/2251\" target=\"_blank\">the feasibility of rendering legacy PHP meta boxes below the content</a> is fraught with challenges and still up for debate. If there isn&#8217;t enough time or client resources for developers to rewrite their work into JS-driven meta boxes, then a clear path for opting out of the Gutenberg interface may be necessary for sites that need to preserve the legacy &#8220;PHP&#8221; meta boxes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2017 19:54:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: Gutenberg 0.7.0 Adds Opt-In Usage Tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73912\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/gutenberg-0-7-0-adds-opt-in-usage-tracking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6286:\"<p><a href=\"https://make.wordpress.org/core/2017/08/04/whats-new-in-gutenberg-4th-august/\" target=\"_blank\">Gutenberg 0.7.0</a> was released just before the weekend with improvements to the writing flow and greater flexibility for theme authors to add their own customizations. Last week&#8217;s version 0.6.0 release made significant changes to the way paragraphs are created within text blocks, allowing for blocks to split when pressing enter. However, it inserted a &#8220;New Paragraph&#8221; placeholder that was distracting for users trying to stay in the flow of writing.</p>\n<p>Version 0.7.0 <a href=\"https://github.com/WordPress/gutenberg/pull/2161\" target=\"_blank\">hides placeholders on focus</a>, providing a cleaner experience of starting a new paragraph. After a user has already intuitively initiated a new paragraph by pressing enter, the &#8220;New Paragraph&#8221; placeholder holds little value. Removing the placeholder is a minor improvement that brings Gutenberg closer to providing a better experience for long-form writing.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/08/new-paragraph-gutenberg-0-7-0.png?ssl=1\"><img /></a></p>\n<p>This release also introduces <a href=\"https://github.com/WordPress/gutenberg/pull/2186\" target=\"_blank\">theme support for customized color palettes and a shared component</a>, such as cover text and button blocks. The sample code below shows how easy it would be for theme authors to implement their own color palettes.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/theme-support-color-palette.png?ssl=1\"><img /></a></p>\n<p>Gutenberg contributors have also added <a href=\"https://github.com/WordPress/gutenberg/pull/2021\" target=\"_blank\">theme support for wide images</a>. According to the inline docs, this allows for some blocks, such as the image block, to define a &#8220;wide&#8221; or &#8220;full&#8221; alignment by adding the corresponding classname to the block&#8217;s wrapper ( <code>alignwide</code> or <code>alignfull</code> ).</p>\n<p>These additions offer theme developers a better picture of where Gutenberg is headed in regards to themes. The plugin&#8217;s contributors are slowly building in more points of customization so that theme authors can add or override Gutenberg&#8217;s styles and provide additional opt-in features to their users.</p>\n<p>Theme support for wide images has already been committed to Tammie Lister&#8217;s experimental <a href=\"https://github.com/WordPress/gutenberg-theme\" target=\"_blank\">Gutenberg Theme</a>. The project was created to showcase how Gutenberg will interact with WordPress themes and is still a work in progress.</p>\n<h3>Gutenberg Adds Opt-In Data Collection</h3>\n<p>After updating the Gutenberg plugin to 0.7.0 and navigating to the editor, users are presented with the option to opt into data collection about their usage of the editor. The usage data, which is anonymous and does not include post content, is sent to WordPress.com for future analysis. Gutenberg contributor James Nylen explained how the data tracking works in a <a href=\"https://make.wordpress.org/core/2017/08/06/opt-in-usage-tracking-in-gutenberg/\" target=\"_blank\">post</a> on Make.WordPress.org.</p>\n<p>&#8220;The Gutenberg plugin contains a mechanism to count how often specific actions occur over time,&#8221; Nylen said. &#8220;If the user has previously clicked &#8216;Yes&#8217; on this screen, and an event occurs that has an associated <a href=\"https://github.com/WordPress/gutenberg/search?utf8=%E2%9C%93&q=bumpStat&type=\" target=\"_blank\">bumpStat call</a> in the Gutenberg code, then this event is sent to WordPress.com servers by loading a special &#8216;pixel&#8217; image.&#8221;</p>\n<p>Gutenberg&#8217;s tracking code stores the “group” and “name” sent with the bumpStat call (short strings of text), along with the time the event was recorded. Nylen said the team will use the data to improve the editor based on usage patterns. This data collection information is currently only available to those with access to WordPress.com servers.</p>\n<p>&#8220;As Gutenberg is an open-source community project, we view this data as belonging to the WordPress community, so we also plan to make this data available via a public dashboard,&#8221; Nylen said.</p>\n<p>He shared an example of the data that has been collected from the plugin over the past few days since 0.7.0 was released. This chart is a preview of the number and types of blocks that users have added to posts while testing the editor.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/08/gutenberg-add-block-total-e1502130689795.png?ssl=1\"><img /></a></p>\n<p>&#8220;The approach taken here is very similar to Calypso&#8217;s event tracking code,&#8221; Nylen said in the <a href=\"https://github.com/WordPress/gutenberg/pull/2140\" target=\"_blank\">pull request for adding the data collection</a>. &#8220;We can use the data added in this PR to inform various decisions such as default order for blocks and whether some blocks are less suitable for core, and more generally this is a very useful technique to collect user experience data.&#8221;</p>\n<p>The majority of Gutenberg&#8217;s chief contributors are Automattic employees, so it makes sense that they would use the options and infrastructure available to them to quickly get data collection going in Gutenberg. However, the data from these tests needs to be shared with the greater WordPress community as soon as possible, since it is being collected in the name of the WordPress project. Ideally, it would have been set up to be displayed publicly before asking users to opt into the collection.</p>\n<p>Gutenberg contributors are also considering making the data collection more modular so that it could be used with other WordPress feature plugins or existing features in the future.</p>\n<p>&#8220;Maybe the tracking could be its own module, it could be useful outside of the editor (and other WP feature plugins later),&#8221; Riad Benguella <a href=\"https://github.com/WordPress/gutenberg/pull/2140#discussion_r130839438\" target=\"_blank\">said</a>. &#8220;Longer term (or not), WP.org needs its own tracking infrastructure and this could be very useful to enhance WordPress.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Aug 2017 20:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: Trademark Trial and Appeal Board Dismisses Automattic’s Trademark Dispute Against Chris Pearson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://wptavern.com/trademark-trial-and-appeal-board-dismisses-automattics-trademark-dispute-against-chris-pearson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4102:\"<p>In July 2015, Automattic <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">won its <span class=\"_Tgc\"> Uniform Domain-Name Dispute-Resolution Policy</span> (UDRP) case</a> against <a href=\"http://www.pearsonified.com/\">Chris Pearson</a> regarding Thesis.com after the <a href=\"http://www.adrforum.com/domaindecisions/1613723.htm\">panel determined</a> that he failed to establish all three elements required under the ICANN Policy.</p>\n<blockquote><p>A party must satisfy all three of the burdens imposed under the Policy in order for the Panel to order transfer of a domain name from the entity registering it. Here, Complainant failed to establish that Respondent registered and used the disputed domain name in bad faith.</p>\n<p><em>See Starwood Hotels &amp; Resorts Worldwide, Inc. v. Samjo CellTech.Ltd</em>, FA 406512 (Nat. Arb. Forum Mar. 9, 2005) (finding that the complainant failed to establish that respondent registered and used the disputed domain name in bad faith because mere assertions of bad faith are insufficient for a complainant to establish Policy ¶ 4(a)(iii)). Therefore, the Panel finds that Complainant failed to support its allegations under Policy ¶ 4(a)(iii) and finds for Respondent.</p></blockquote>\n<p>This allowed Automattic to maintain ownership of <a href=\"https://themeshaper.com/\">Thesis.com</a>. Automattic retaliated by <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=1\">filing a petition</a> for cancellation with the United States Patent and Trademark Office. In the petition, Automattic argued that the three trademarks owned by Pearson, DIYTHEMES, THESIS THEME, and THESIS, should be cancelled.</p>\n<p>For the past two years, legal teams for both parties have gone back and forth filing briefs, requests for extensions, and other documents. Earlier this year on April 20th, the Trademark Trial and Appeal Board <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=19\">dismissed the case</a> citing a lack of evidence and testimony from Automattic that establishes real interest and a reasonable belief in damages.</p>\n<blockquote><p>The record is devoid of any evidence concerning the nature of Petitioner’s (Automattic) commercial activities and its interest in Respondent’s (Chris Pearson) registered marks. Proof of standing in a Board proceeding is a low threshold.</p>\n<p>For example, Petitioner could have submitted testimony or competent documentary evidence as to its asserted need to use the terms comprising the marks and nature of its business activities to establish its standing.</p>\n<p>Petitioner neglected to do so. Thus, on the record before us, Petitioner has failed to establish a &#8216;real interest&#8217; and &#8216;reasonable belief in damage.&#8217; Accordingly, the cancellation proceeding is dismissed for Petitioner’s lack of standing.</p></blockquote>\n<p>On May 22nd,<a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=20\"> Automattic filed a motion</a> for the board to reconsider its decision. On June 1st, the <a href=\"http://ttabvue.uspto.gov/ttabvue/v?pno=92061714&pty=CAN&eno=21\">board denied the request</a> making its decision final.</p>\n<blockquote><p>Petitioner has failed to establish any error in the Final Decision. Rather, Petitioner expresses disagreement with the result reached and argues, for the first time on reconsideration, positions it should have alleged in its petition to cancel, supported with testimony and/or competent evidence, and raised in its trial brief.</p>\n<p>We will not infer from Petitioner’s scant allegations and evidence, and silence in its brief, proof of its standing to bring this cancellation proceeding. Petitioner’s motion for reconsideration is denied.</p></blockquote>\n<p>The decision allows Pearson to retain ownership of the DIYTHEMES, THESIS THEME, and THESIS trademarks. It&#8217;s unclear if this outcome will lead to more legal actions from either party. At the time of publishing, Pearson did not return a request for comment regarding the outcome and what his plans are for the Trademarks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Aug 2017 00:56:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: In Case You Missed It – Issue 22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=73917&preview=true&preview_id=73917\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6881:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>WordPress Foundation is Taking Submissions for The Kim Parsell Memorial Scholarship</h2>\n<p>For the third year in a row, the WordPress Foundation will award a woman contributor with financial need who has never attended WordCamp US the <a href=\"https://2017.us.wordcamp.org/kim-parsell-memorial-scholarship-2017/\">Kim Parsell Memorial Scholarship</a>. The scholarship was created in memory of Kim Parsell who <a href=\"https://wptavern.com/kim-parsell-affectionately-known-as-wpmom-passes-away\">passed away in 2015</a>.</p>\n<p>The scholarship covers the cost of the following:</p>\n<ul>\n<li>Travel to and from Nashville from the recipient’s home city,</li>\n<li>Hotel stay for the duration of the event,</li>\n<li>A ticket to WordCamp US 2017.</li>\n</ul>\n<p>The deadline to apply for the scholarship is Tuesday, August 15th at 12a.m. Pacific.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://2017.us.wordcamp.org/kim-parsell-memorial-scholarship-2017/\">Kim Parsell Memorial Scholarship 2017</a></p></blockquote>\n<p></p>\n<h2>The WordPress Economy is Fine</h2>\n<p>In a <a href=\"https://poststatus.com/future-wordpress-economy-im-not-worried/\">guest post</a> for Post Status, Joshua Strebel, founder of Pagely, explains why he&#8217;s not worried about the WordPress economy.</p>\n<blockquote><p>In all channels, new market entrants or existing small shops are being out-gunned by the established players, or the buyers needs are being met upon install.</p>\n<p>So is the WordPress ecosystem shrinking? Yes, segments of it are and will continue to do so. It’s like in any industry: the car replaced the horse and the robot replaced the factory worker. What was successful in the New Market phase may not work in the more mature, &#8216;Existing Market&#8217; phase we are in.</p></blockquote>\n<p>It&#8217;s a good read and it&#8217;s interesting to think about what new segments will be created that don&#8217;t exist.</p>\n<h2>WPCampus 2017 Videos Are Now Available</h2>\n<p>WPCampus has published <a href=\"https://wpcampus.org/videos/\">all of the videos</a> from its 2017 conference. They&#8217;re available to watch for free either on the site or the organization&#8217;s <a href=\"https://www.youtube.com/wpcampusorg\">YouTube channel</a>. If you attended WPCampus 2017 or watched the livestream, please consider taking <a href=\"https://2017.wpcampus.org/conference-survey/\">the following survey</a> that will help organizers plan for future events.</p>\n<h2>WordPress Case Studies Needed</h2>\n<p>The WordPress marketing team has published a survey seeking case studies from agencies, enterprises, and clients who use WordPress. The team has provided a sample <a href=\"https://make.wordpress.org/marketing/files/2017/08/WordPress-Marketing-Sample-Case-Study.pdf\">Case Study</a> that can be used as a template. The case studies will help determine how WordPress is being used and help focus future marketing efforts.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/marketing/2017/08/02/calling-all-wordpress-agencies/\">Calling all WordPress Agencies</a></p></blockquote>\n<p></p>\n<h2>New Preferred Languages Prototype</h2>\n<p>Pascal Birchler unveiled an updated prototype of the preferred languages project. The project adds UI to the WordPress backend that allows users to select multiple preferred languages. WordPress will try to load the translations for the first language that’s available. If it&#8217;s not available, it will fall back to the next language in the list.</p>\n<p>Birchler is seeking feedback on the newest <a href=\"https://github.com/swissspidy/preferred-languages\">version of the plugin</a> and is working towards it being a merge candidate for WordPress 4.9.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/core/2017/05/20/preferred-languages-the-prototype/\">Preferred Languages: The Prototype</a></p></blockquote>\n<p></p>\n<h2>WordPress&#8217; Emerging Dominance as a CMS of Choice for Law Firms</h2>\n<p>Kevin O&#8217; Keefe <a href=\"http://abovethelaw.com/2017/08/wordpress-to-dominate-as-content-management-system-for-all-law-firms/\">explains why</a> WordPress is likely to become the dominant CMS of choice for law firms.</p>\n<blockquote><p>Just as Word has replaced WordPerfect as the word processing solution of choice for law firms, WordPress is likely to replace other content management systems for law firms, both large and small.</p></blockquote>\n<h2>WordPress 4.9 Expected This November</h2>\n<p>In the last developer&#8217;s chat, WordPress 4.9 development kicked off and is expected to be released in November. This release will focus on editing code, managing plugins and themes, a user-centric way to customize a site, and improvements to features recently added. Mel Choyce and Weston Ruter are co-release leads.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/core/2017/08/03/dev-chat-summary-august-2nd-4-9-week-1/\">Dev Chat Summary: August 2nd (4.9 week 1)</a></p></blockquote>\n<p></p>\n<h2>Volunteers Needed for WordCamp US</h2>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://2017.us.wordcamp.org/2017/08/01/wcus-needs-you-volunteer-applications-are-now-open/\">WCUS Needs You: Volunteer Applications Are Now Open</a></p></blockquote>\n<p></p>\n<h2>A Visit From St. Gutenberg</h2>\n<p><a href=\"https://wordpress.org/support/topic/catastophe-how-to-destroy-wordpress-in-2-weeks/\">Perhaps the greatest one-star review on the WordPress plugin directory. </a></p>\n<h2>Minniepuu and Wapauul!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don&#8217;t know, Wapuu is the <a href=\"http://wapuu.jp/2015/12/12/wapuu-origins/\">unofficial mascot</a> of the WordPress project. Minniepuu and Wapauul, designed by <a href=\"http://marktimemedia.com/\">Michelle Schulp</a>, are the mascots of WordCamp Minneapolis 2017 that&#8217;s taking place this weekend.</p>\n<p>Minneapolis and St. Paul, MN are commonly referred to as the Twin Cities and the city&#8217;s Major League Baseball team is the Minnesota Twins.</p>\n<img />WordCamp Minneapolis 2017 Wapuus\n<p>That&#8217;s it for issue twenty-two. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Aug 2017 00:18:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Publishers Are Moving Back to WordPress After Short Experiments with Medium\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73902\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/publishers-are-moving-back-to-wordpress-after-short-experiments-with-medium\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8358:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2014/07/migration.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://www.flickr.com/photos/hyku/2267820888/\">hyku</a> &#8211; <a href=\"http://creativecommons.org/licenses/by-sa/2.0/\">cc</a>\n<p><a href=\"https://www.theawl.com/\" target=\"_blank\">The Awl</a>, <a href=\"https://thinkprogress.org/\" target=\"_blank\">ThinkProgress</a>, <a href=\"https://filmschoolrejects.com/\" target=\"_blank\">Film School Rejects</a>, and several other publishers have moved back to WordPress after short experiments on Medium. In early 2016, Medium convinced a collection of small, independent publications to move to its platform but shortly thereafter discontinued its unsuccessful ad-driven publishing model <a href=\"https://www.buzzfeed.com/charliewarzel/when-you-launch-your-publication-the-same-day-medium-changes\" target=\"_blank\">without notifying publishers</a>.</p>\n<p>In March 2017, Medium CEO Ev Williams announced that his solution to fix the broken, ad-driven media industry was to fire up <a href=\"https://wptavern.com/medium-aims-to-fix-broken-media-with-new-5-subscription-program\" target=\"_blank\">a new $5 subscription program</a> that would put articles behind a paywall inside of the Medium network.</p>\n<p>Today The Awl, The Hairpin, and The Billfold announced the publications have <a href=\"https://www.theawl.com/2017/08/somethings-different/\" target=\"_blank\">moved back to WordPress</a> after switching to Medium in April 2016.</p>\n<p>&#8220;The move to Medium was a cool experiment, in my opinion, but the year is up and personally I missed the ads,&#8221; The Awl Editor Silvia Killingsworth said. <a href=\"https://www.thebillfold.com/2017/08/change-is-the-only-constant-in-life/\" target=\"_blank\">The Billfold&#8217;s announcement</a> cited Mediums&#8217; recent changes as the reason for the move back to WordPress:</p>\n<blockquote><p>Our move to Medium was an experiment to explore a different kind of business model, and that experiment is over now that the platform has moved in a different direction (<a href=\"https://www.axios.com/publishers-flee-medium-amid-business-model-changes-2440471520.html\" target=\"_blank\">you can read more in-depth about those changes here</a>).</p>\n<p>Adapting to change is all part of the many joys of being a small, independent publisher.</p></blockquote>\n<h3>Film School Rejects Returns to WordPress After 1-Year Experiment with Medium</h3>\n<p><a href=\"https://filmschoolrejects.com/what-happened-with-medium/\" target=\"_blank\">Film School Rejects (FSR) also returned to WordPress in May</a> after a year-long, rocky experiment with Medium. The publication was one of Medium&#8217;s first 12 premium publishers.</p>\n<p>&#8220;To be honest, I can&#8217;t afford, nor would my heart hold up for, a move back to a private server and WordPress,&#8221; FSR founder Neil Miller <a href=\"https://www.poynter.org/2017/why-publishers-are-sticking-with-medium-for-now/444507/\" target=\"_blank\">told Poynter in January</a> after Medium announced it was pivoting away from ad-driven media. &#8220;So, barring a miracle, my site will live and die on Medium. I&#8217;m optimistic that I&#8217;ll find some sort of solution and be able to remain on Medium.&#8221;</p>\n<p>Ultimately, Medium&#8217;s goals as a publisher of subscription content were at odds with FSR&#8217;s ability to sustain the publication. Miller said they had ported 10 years of content over to the platform after being promised a beautiful user experience and a way forward that would allow FSR to grown the business, continue to pay its writers, and keep the publication on the cutting edge.</p>\n<p>&#8220;What we were sold when we joined their platform is very different from what they&#8217;re offering as a way forward,&#8221; Miller told Poynter. &#8220;It&#8217;s almost as if Ev Williams wasn&#8217;t concerned that he was pulling out the rug from underneath publishers who had placed their trust in his vision for the future of journalism.&#8221;</p>\n<p>After moving FSR back to WordPress, Miller said the partnership with Medium was great until the company changed course to become a different type of platform.</p>\n<p>&#8220;As time went on, it became clear that Medium’s priorities had shifted from being a platform for independent publishers to being itself a publisher of premium, subscription-based content,&#8221; he said. &#8220;As we learned more about their future plans for the now-existent Medium ‘Members Only’ program, it became clear that our site wouldn’t be able to continue to operate the way we always had.&#8221;</p>\n<p>Miller said the process of trying a new platform and returning to WordPress made him realize that he &#8220;missed some of the customizable features of WordPress,&#8221; which led his team to work on some new features they will be launching in the future. The site has reinstated its banner advertising on pages.</p>\n<p>&#8220;We’d love to be able to do this all without any ads, but there’s no money in that,&#8221; Miller said. &#8220;And guess who doesn’t get paid if the site can’t make any money? The people who write articles, edit the site, make video essays, curate One Perfect Shot, and host podcasts.&#8221;</p>\n<h3>ThinkProgress Exits Medium, Founder Says Platform is No Longer Developed with Publishers in Mind</h3>\n<p><a href=\"https://thinkprogress.org/\" target=\"_blank\">ThinkProgress</a> was one of the largest publications to make the move to Medium last August. After less than a year, the site has moved back to WordPress, its previous publishing platform. ThinkProgress founder Judd Legum told <a href=\"http://www.poynter.org/2017/with-big-plans-to-staff-up-thinkprogress-is-leaving-medium-behind-update/465424/\" target=\"_blank\">Poynter</a> that the lack of advertising capabilities was not the reason his publication left the platform but rather because Medium no longer serves the best interests of publishers.</p>\n<p>&#8220;I&#8217;m certainly not eager to have a bunch of ads on the site — and we&#8217;re not going to,&#8221; Legum said. &#8220;I&#8217;d love to have none. And if it were possible, I&#8217;d be interested in figuring out a model where we don&#8217;t have to have any. But if it&#8217;s connected to a platform that&#8217;s not going to be developed with publishers in mind, it doesn&#8217;t really make sense to think through that as a platform. That sealed it for me.&#8221;</p>\n<p>ThinkProgress is taking its 8 to 10 million unique pageviews per month back into the independent publishing space. It is the latest of several other publishers leaving Medium after having been persuaded in 2016 to jump into Ev Williams&#8217; experiment with initial promises of free hosting, more traffic, and advertising money. Not all of the sites are moving back to WordPress, but most are looking to free themselves from Medium&#8217;s experiment on publishers and regain the ability to sell advertising and/or subscriptions.</p>\n<p><a href=\"https://www.axios.com/bill-simmons-moves-the-ringer-from-medium-to-vox-media-2426770782.html\" target=\"_blank\">The Ringer moved to Vox Media</a> at the end of May after Medium discontinued its advertising model. <a href=\"https://www.poynter.org/2017/after-being-wooed-by-medium-some-publishers-are-beginning-to-leave/459998/\" target=\"_blank\">The Pacific Standard left Medium</a> to focus on building custom features to drive subscription growth.</p>\n<p>Backchannel also moved its site off of the platform and <a href=\"https://www.wired.com/story/backchannel-is-moving-to-wired\" target=\"_blank\">is now publishing on Wired.com</a>. &#8220;In the time since Backchannel launched, Medium has shifted its business strategy, and it’s no longer as focused on helping publications like ours profit,&#8221; BackChannel Editor Jessi Hempel said.</p>\n<p>Medium&#8217;s new <a href=\"https://medium.com/membership\" target=\"_blank\">subscription revenue model</a> and partner program are still in beta but the returns have not been enough to convince publishers to stay, even with costly migrations back to tried and proven platforms like WordPress. Ad-driven publishing may not be the most ideal way to keep a publication afloat, but publishers moving away from Medium are not willing to stay on for the the startup&#8217;s experiment at the expense of their writers and staff.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2017 23:09:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: WordPress 4.8.1 Released, Adds Custom HTML Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=73825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/wordpress-4-8-1-released-adds-custom-html-widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:901:\"<p>WordPress 4.8.1 <a href=\"https://wordpress.org/news/2017/08/wordpress-4-8-1-maintenance-release/\">is available for download</a> or as an update from the WordPress Dashboard. This release contains 29 bug fixes and improvements. The most notable addition is a dedicated <a href=\"https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\">Custom HTML widget</a>.</p>\n<img />Custom HTML Widget in WordPress 4.8.1\n<p>The Custom HTML widget works similar to the Text widget in WordPress 4.7 and below. To see a full list of changes in WordPress 4.8.1, check out the <a href=\"https://codex.wordpress.org/Version_4.8.1\">release notes</a>. If you think you&#8217;ve discovered a bug, please report it in as much detail as possible on the <a href=\"https://wordpress.org/support/forum/how-to-and-troubleshooting/\">WordPress support forums</a>. Twenty-two people contributed to this release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 20:26:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Website as Resume\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47486\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://ma.tt/2017/08/website-as-resume/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1422:\"<p>The illustrious Chance the Rapper was looking for a new intern.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I\'m looking for an intern, someone with experience in putting together decks and writing proposals</p>\n<p>&mdash; Lil Chano From 79th (@chancetherapper) <a href=\"https://twitter.com/chancetherapper/status/846441791385677824\">March 27, 2017</a></p></blockquote>\n<p></p>\n<p>Some people responded with regular resumes, replying as images, but Negele &#8220;Hopsey&#8221; Hospedales <a href=\"https://chancehirehospey.com/\">decided to make a website on WordPress.com</a>:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">maybe I\'m extra, but I think resumes are old fashion. I built a website instead. <a href=\"https://twitter.com/hashtag/ChanceHireHospey?src=hash\">#ChanceHireHospey</a><a href=\"https://t.co/DmYvxAQu61\">https://t.co/DmYvxAQu61</a></p>\n<p>&mdash; madebyhosp. (@Hospey) <a href=\"https://twitter.com/Hospey/status/846612517723947008\">March 28, 2017</a></p></blockquote>\n<p></p>\n<p>The happy ending is <a href=\"http://www.billboard.com/articles/news/lifestyle/7882484/chance-the-rapper-intern-interview-Negele-Hospedales\">written up in Billboard: he got the gig and went on tour with Chance</a>. Hospey wrote a great article on it himself: <a href=\"https://hospeyhowto.com/2017/07/29/how-to-work-for-your-favourite-rapper/\">How To Work For Your Favourite Rapper</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 10:23:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: Akismet WordPress Plugin 3.3.4 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1955\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://blog.akismet.com/2017/08/03/akismet-wordpress-plugin-3-3-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1571:\"<p>Version 3.3.4 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>3.3.4 has a few fixes and enhancements that should make everyone&#8217;s lives better:</p>\n<ul>\n<li>URL previews in the WordPress admin will now begin preloading when the cursor moves near the link so they appear faster once you move your mouse over the link.</li>\n<li>When a comment is caught by both the Comment Blacklist and Akismet, Akismet will now leave it in Trash instead of moving it out of Trash and into Spam.</li>\n<li>A bug has been fixed that was preventing a notice from being shown when a site&#8217;s firewall was preventing it from connecting to Akismet&#8217;s servers.</li>\n<li>Akismet will no longer log all of its debug information unless a new constant (<code>AKISMET_DEBUG</code>) is also enabled, even if <code>WP_DEBUG</code> and <code>WP_DEBUG_LOG</code> are both enabled.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1955/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1955/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1955&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 04:25:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WPWeekly Episode 283 – A Visit From St. Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=73870&preview=true&preview_id=73870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/wpweekly-episode-283-a-visit-from-st-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2823:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I start off the show with an adaptation of &#8216;<a href=\"https://www.poets.org/poetsorg/poem/visit-st-nicholas\">A Visit from St. Nicholas</a>&#8216; created by Clement Clarke Moore. Since we didn&#8217;t have a guest, Jacoby and I opened up about our personal lives which turned into a conversation about remote working from home. We also discussed the news of the week, including SiteLock&#8217;s acquisition of Patchman, WordPress 4.8.1, and Adobe discontinuing Flash.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/a-fix-for-wordpress-weekly-subscribers-using-pocket-casts\">A Fix for WordPress Weekly Subscribers Using Pocket Casts</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-1-adds-a-dedicated-custom-html-widget\">WordPress 4.8.1 Adds a Dedicated Custom HTML Widget</a><br />\n<a href=\"https://wptavern.com/sitelock-acquires-patchmans-malware-and-vulnerability-detection-technology-expands-wordpress-customer-base-to-4-million\">SiteLock Acquires Patchman’s Malware and Vulnerability Detection Technology, Expands WordPress Customer Base to 4 Million</a><br />\n<a href=\"https://wptavern.com/adobe-to-discontinue-flash-support-and-updates-in-2020\">Adobe to Discontinue Flash Support and Updates in 2020</a><br />\n<a href=\"https://wptavern.com/blog-passes-100000-registrations-66-5-of-purchased-domains-are-in-use\">.blog Passes 100,000 Registrations, 66.5% of Purchased Domains are in Use</a><br />\n<a href=\"https://wptavern.com/buddypress-2-9-adds-ability-to-safely-edit-a-groups-permalink\">BuddyPress 2.9 Adds Ability to Safely Edit A Group’s Permalink</a><br />\n<a href=\"https://wptavern.com/new-dobby-plugin-captures-and-hides-unwanted-wordpress-admin-notices\">New Dobby Plugin Captures and Hides Unwanted WordPress Admin Notices</a></p>\n<h2>Picks of the Week:</h2>\n<p>An entertaining <a href=\"https://wordpress.org/support/topic/catastophe-how-to-destroy-wordpress-in-2-weeks/\">one-star review</a> of Gutenberg based on &#8216;A Visit from St. Nicholas&#8217; poem by Clement Clarke Moore.<b></b></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, August 9th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #283:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2017 01:25:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 30 Aug 2017 09:45:21 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 30 Aug 2017 09:30:11 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20170518170751\";}','no'),(10698,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1504129521','no'),(10699,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1504086321','no'),(10704,'_transient_timeout_epc_purged_941e499ba9b0095a51a1b1c0d6e97b41','1504086483','no'),(10705,'_transient_epc_purged_941e499ba9b0095a51a1b1c0d6e97b41','1504086423','no'),(10718,'_transient_timeout_epc_purged_a53ccdd96677048a205764f423b6a4dd','1504086656','no'),(10719,'_transient_epc_purged_a53ccdd96677048a205764f423b6a4dd','1504086596','no'),(10722,'_transient_timeout_epc_purged_d41d8cd98f00b204e9800998ecf8427e','1504086656','no'),(10723,'_transient_epc_purged_d41d8cd98f00b204e9800998ecf8427e','1504086596','no'),(10769,'_transient_timeout_epc_purged_d3fb9a6367bfaa13cc3601957c9e8047','1504451180','no'),(10770,'_transient_epc_purged_d3fb9a6367bfaa13cc3601957c9e8047','1504451120','no'),(10775,'_transient_timeout_epc_purged_25982e3ef165c7b9f325f5f87785eb6f','1504451180','no'),(10776,'_transient_epc_purged_25982e3ef165c7b9f325f5f87785eb6f','1504451120','no'),(10777,'_transient_timeout_epc_purged_1318c82199a9242bf993bdb768d957af','1504451180','no'),(10778,'_transient_epc_purged_1318c82199a9242bf993bdb768d957af','1504451120','no'),(10779,'_transient_timeout_epc_purged_3115c9c4786b690ceaff8c23b6590d66','1504451180','no'),(10780,'_transient_epc_purged_3115c9c4786b690ceaff8c23b6590d66','1504451120','no'),(10781,'_transient_timeout_epc_purged_adbbe255ce69aa2369ffda3fd0040a41','1504451180','no'),(10782,'_transient_epc_purged_adbbe255ce69aa2369ffda3fd0040a41','1504451120','no'),(10793,'_site_transient_timeout_browser_f05336c2dd01cd07d9b4733204548e95','1505149931','no'),(10794,'_site_transient_browser_f05336c2dd01cd07d9b4733204548e95','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.113\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10795,'_transient_timeout_epc_purged_05a73a2efa0860a3e914b2a218274575','1504545191','no'),(10796,'_transient_epc_purged_05a73a2efa0860a3e914b2a218274575','1504545131','no'),(10797,'_transient_timeout_epc_purged_84bfa12f31138813471a7810e5cfe68b','1504545191','no'),(10798,'_transient_epc_purged_84bfa12f31138813471a7810e5cfe68b','1504545131','no'),(10801,'_site_transient_timeout_community-events-bfc76a6f1ef62c0c0c3e2ea7c7f53040','1504588333','no'),(10802,'_site_transient_community-events-bfc76a6f1ef62c0c0c3e2ea7c7f53040','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"67.248.40.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:33:\"WordCamp Providence, Rhode Island\";s:3:\"url\";s:37:\"https://2017.rhodeisland.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-09-22 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:22:\"East Greenwich, RI USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.661721800000002;s:9:\"longitude\";d:-71.502774900000006;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp Baltimore, MD\";s:3:\"url\";s:35:\"https://2017.baltimore.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-14 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Baltimore, MD\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.285949000000002;s:9:\"longitude\";d:-76.605507000000003;}}i:2;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp New York City\";s:3:\"url\";s:29:\"https://2017.nyc.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-21 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:13:\"New York City\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.757803000000003;s:9:\"longitude\";d:-73.983153999999999;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:30:\"WordCamp Philadelphia, PA, USA\";s:3:\"url\";s:32:\"https://2017.philly.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-10-28 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:21:\"Philadelphia, PA, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.946544099999997;s:9:\"longitude\";d:-75.208133000000004;}}i:4;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Rochester\";s:3:\"url\";s:35:\"https://2017.rochester.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2017-11-18 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Rochester, NY, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:43.211365899999997;s:9:\"longitude\";d:-77.954699300000001;}}}}','no'),(10842,'_site_transient_timeout_browser_370aff36b0730b5f7d881028f5bae6be','1505751950','no'),(10843,'_site_transient_browser_370aff36b0730b5f7d881028f5bae6be','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"61.0.3163.79\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10844,'_site_transient_timeout_community-events-eb8047b48ec7772c956fc85504f3f615','1505190353','no'),(10845,'_site_transient_community-events-eb8047b48ec7772c956fc85504f3f615','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"149.39.250.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:67:\"Help Desk - Bring Your Laptop, Yourself and Your WordPress Problems\";s:3:\"url\";s:70:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/events/242552899/\";s:6:\"meetup\";s:29:\"WordPress North Jersey Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/\";s:4:\"date\";s:19:\"2017-09-11 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Montclair, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.811279999999996;s:9:\"longitude\";d:-74.219345000000004;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:67:\"Help Desk - Bring Your Laptop, Yourself and Your WordPress Problems\";s:3:\"url\";s:70:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/events/242552899/\";s:6:\"meetup\";s:29:\"WordPress North Jersey Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/\";s:4:\"date\";s:19:\"2017-09-11 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Montclair, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.811279999999996;s:9:\"longitude\";d:-74.219345000000004;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:15:\"WPNYC HELP DESK\";s:3:\"url\";s:53:\"https://www.meetup.com/WordPressNYC/events/243209514/\";s:6:\"meetup\";s:26:\"WordPress NYC Meetup Group\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/WordPressNYC/\";s:4:\"date\";s:19:\"2017-09-13 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"New York, NY, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.756900999999999;s:9:\"longitude\";d:-73.990027999999995;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"Multi-Channel Commerce Solutions for Developers\";s:3:\"url\";s:53:\"https://www.meetup.com/WordPressNYC/events/243182300/\";s:6:\"meetup\";s:26:\"WordPress NYC Meetup Group\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/WordPressNYC/\";s:4:\"date\";s:19:\"2017-09-14 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"New York, NY, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.721378000000001;s:9:\"longitude\";d:-73.996703999999994;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:40:\"Learn About the WordPress Transients API\";s:3:\"url\";s:73:\"https://www.meetup.com/Northwestern-NJ-WordPress-Meetup/events/236335847/\";s:6:\"meetup\";s:32:\"Northwestern NJ WordPress Meetup\";s:10:\"meetup_url\";s:56:\"https://www.meetup.com/Northwestern-NJ-WordPress-Meetup/\";s:4:\"date\";s:19:\"2017-09-19 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Clinton, NJ, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.645035;s:9:\"longitude\";d:-74.911834999999996;}}}}','no'),(10846,'_transient_timeout_epc_purged_57cfba7684fc8ce30d065215c4841680','1505147219','no'),(10847,'_transient_epc_purged_57cfba7684fc8ce30d065215c4841680','1505147159','no'),(10859,'_site_transient_timeout_browser_99f372b446f72ab7e2ef37cc24163d53','1505790747','no'),(10860,'_site_transient_browser_99f372b446f72ab7e2ef37cc24163d53','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"54.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(10861,'_transient_timeout_epc_purged_b482f4655e499a6c755c5a3ebc146b1c','1505186007','no'),(10862,'_transient_epc_purged_b482f4655e499a6c755c5a3ebc146b1c','1505185947','no'),(10867,'_site_transient_timeout_community-events-b4e13a5ce12a78c775b682169e0e5cc5','1505229150','no'),(10868,'_site_transient_community-events-b4e13a5ce12a78c775b682169e0e5cc5','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"68.132.224.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:28:\"OC WordPress - Developer Day\";s:3:\"url\";s:59:\"https://www.meetup.com/OC-Wordpress-Group/events/242743055/\";s:6:\"meetup\";s:18:\"OC WordPress Group\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/OC-Wordpress-Group/\";s:4:\"date\";s:19:\"2017-09-11 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:25:\"Huntington Beach, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.68014500000000310819814330898225307464599609375;s:9:\"longitude\";d:-118.0004650000000054888005251996219158172607421875;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:49:\"#IEWP Advanced WordPress Meetup (Developer Level)\";s:3:\"url\";s:55:\"https://www.meetup.com/inlandempirewp/events/242477924/\";s:6:\"meetup\";s:36:\"Inland Empire WordPress Meetup Group\";s:10:\"meetup_url\";s:38:\"https://www.meetup.com/inlandempirewp/\";s:4:\"date\";s:19:\"2017-09-12 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:15:\"Corona, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.88492600000000010140865924768149852752685546875;s:9:\"longitude\";d:-117.61043499999999539795680902898311614990234375;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:14:\"Business Track\";s:3:\"url\";s:59:\"https://www.meetup.com/OC-Wordpress-Group/events/240817324/\";s:6:\"meetup\";s:18:\"OC WordPress Group\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/OC-Wordpress-Group/\";s:4:\"date\";s:19:\"2017-09-18 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:25:\"Huntington Beach, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.68014500000000310819814330898225307464599609375;s:9:\"longitude\";d:-118.0004650000000054888005251996219158172607421875;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:25:\"General WhittierWP Meetup\";s:3:\"url\";s:51:\"https://www.meetup.com/whittierwp/events/242007682/\";s:6:\"meetup\";s:18:\"Whittier WordPress\";s:10:\"meetup_url\";s:34:\"https://www.meetup.com/whittierwp/\";s:4:\"date\";s:19:\"2017-09-18 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Whittier, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.96047200000000287900547846220433712005615234375;s:9:\"longitude\";d:-118.0534519999999929495970718562602996826171875;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:29:\"OC WordPress - Business Track\";s:3:\"url\";s:59:\"https://www.meetup.com/OC-Wordpress-Group/events/240817324/\";s:6:\"meetup\";s:18:\"OC WordPress Group\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/OC-Wordpress-Group/\";s:4:\"date\";s:19:\"2017-09-18 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:25:\"Huntington Beach, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.68014500000000310819814330898225307464599609375;s:9:\"longitude\";d:-118.0004650000000054888005251996219158172607421875;}}}}','no'),(10873,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1505311042;s:7:\"checked\";a:1:{s:4:\"Divi\";s:6:\"3.0.73\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(10928,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1505198826','no');
INSERT INTO `wp_xyud_options` VALUES (10929,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4374;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2502;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2373;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:2290;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1830;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1604;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1589;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1439;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1355;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1351;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1343;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1275;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1273;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1134;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1056;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1049;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:998;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:942;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:817;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:815;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:806;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:774;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:771;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:670;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:668;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:663;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:654;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:645;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:644;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:636;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:624;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:609;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:594;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:594;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:589;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:583;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:574;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:573;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:560;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:555;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:542;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:535;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:523;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:517;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:505;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:500;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:494;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:488;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:476;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:474;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:472;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:470;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:448;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:442;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:442;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:440;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:439;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:434;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:420;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:418;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:409;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:406;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:405;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:404;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:401;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:396;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:385;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:383;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:380;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:370;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:353;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:344;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:337;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:332;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:332;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:331;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:330;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:328;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:326;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:326;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:321;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:321;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:321;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:310;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:302;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:300;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:298;}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";i:292;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:291;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:289;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:286;}s:7:\"adsense\";a:3:{s:4:\"name\";s:7:\"adsense\";s:4:\"slug\";s:7:\"adsense\";s:5:\"count\";i:284;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:283;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:282;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:279;}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";i:277;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:273;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:270;}s:7:\"captcha\";a:3:{s:4:\"name\";s:7:\"captcha\";s:4:\"slug\";s:7:\"captcha\";s:5:\"count\";i:270;}s:7:\"tinymce\";a:3:{s:4:\"name\";s:7:\"tinyMCE\";s:4:\"slug\";s:7:\"tinymce\";s:5:\"count\";i:270;}}','no'),(10940,'_site_transient_timeout_et_core_version','1505397437','no'),(10941,'_site_transient_et_core_version','3.0.73','no'),(10942,'_transient_timeout_epc_purged_39697a1043d78a8a48770e265eeb591b','1505188427','no'),(10943,'_transient_epc_purged_39697a1043d78a8a48770e265eeb591b','1505188367','no'),(10944,'_transient_timeout_epc_purged_265263113b92c95be39cf209f6c02b75','1505188427','no'),(10945,'_transient_epc_purged_265263113b92c95be39cf209f6c02b75','1505188367','no'),(10946,'_transient_timeout_epc_purged_f852d5d807c5a2df7da63be78f1a6039','1505188427','no'),(10947,'_transient_epc_purged_f852d5d807c5a2df7da63be78f1a6039','1505188367','no'),(10948,'_transient_timeout_epc_purged_975dc9c757bba84e360a087fa4dc29ac','1505188427','no'),(10949,'_transient_epc_purged_975dc9c757bba84e360a087fa4dc29ac','1505188367','no'),(10950,'_transient_timeout_epc_purged_dbf2f058ecc693801ddccc200f36ff24','1505188427','no'),(10951,'_transient_epc_purged_dbf2f058ecc693801ddccc200f36ff24','1505188367','no'),(10952,'_transient_timeout_epc_purged_dbdc05b2929ea32d90cb0cfc809f75e3','1505188427','no'),(10953,'_transient_epc_purged_dbdc05b2929ea32d90cb0cfc809f75e3','1505188367','no'),(10954,'_transient_timeout_epc_purged_be43791c1cb949592b785972090f4fc6','1505188427','no'),(10955,'_transient_epc_purged_be43791c1cb949592b785972090f4fc6','1505188367','no'),(10956,'_transient_timeout_epc_purged_0ee9d3dccfa194821201785c10eeceea','1505188427','no'),(10957,'_transient_epc_purged_0ee9d3dccfa194821201785c10eeceea','1505188367','no'),(10958,'_transient_timeout_epc_purged_9b0e2211f9a58d946fe37a6df7a181ee','1505188427','no'),(10959,'_transient_epc_purged_9b0e2211f9a58d946fe37a6df7a181ee','1505188367','no'),(10960,'_transient_timeout_epc_purged_6bc5bf9ee9b56f9ab007f71c020f7670','1505188427','no'),(10961,'_transient_epc_purged_6bc5bf9ee9b56f9ab007f71c020f7670','1505188367','no'),(10962,'_transient_timeout_epc_purged_c98b4e68dc7c2eea6b07bc6d8e56e8e5','1505188428','no'),(10963,'_transient_epc_purged_c98b4e68dc7c2eea6b07bc6d8e56e8e5','1505188368','no'),(10964,'_transient_timeout_epc_purged_e0952b9edf5188bafadf981cfef2728f','1505188428','no'),(10965,'_transient_epc_purged_e0952b9edf5188bafadf981cfef2728f','1505188368','no'),(10966,'_transient_timeout_epc_purged_4675fd78a920766e3619f31cb280100d','1505188428','no'),(10967,'_transient_epc_purged_4675fd78a920766e3619f31cb280100d','1505188368','no'),(10968,'_transient_timeout_epc_purged_e9e44ec1bdabf11bbea7c0bced04649b','1505188451','no'),(10969,'_transient_epc_purged_e9e44ec1bdabf11bbea7c0bced04649b','1505188391','no'),(10970,'_transient_timeout_epc_purged_25e8fbbb06936d06b45fcf5686ead5ae','1505188451','no'),(10971,'_transient_epc_purged_25e8fbbb06936d06b45fcf5686ead5ae','1505188391','no'),(10972,'_transient_timeout_epc_purged_13c722bb68731faaaf71a381c0bb6df2','1505188451','no'),(10973,'_transient_epc_purged_13c722bb68731faaaf71a381c0bb6df2','1505188391','no'),(10974,'_transient_timeout_epc_purged_2bd4534e1b9c7ca82efcc52aac3a354e','1505188451','no'),(10975,'_transient_epc_purged_2bd4534e1b9c7ca82efcc52aac3a354e','1505188391','no'),(10976,'_transient_timeout_epc_purged_d2a09f6cee429cb3b333bbaa99d8e001','1505188452','no'),(10977,'_transient_epc_purged_d2a09f6cee429cb3b333bbaa99d8e001','1505188392','no'),(10978,'_transient_timeout_epc_purged_e924c444f567226e8b2ba160a41f4e7c','1505188452','no'),(10979,'_transient_epc_purged_e924c444f567226e8b2ba160a41f4e7c','1505188392','no'),(10980,'_transient_timeout_epc_purged_6dbee591bb079378a64efdb06e0f662f','1505188452','no'),(10981,'_transient_epc_purged_6dbee591bb079378a64efdb06e0f662f','1505188392','no'),(10982,'_transient_timeout_epc_purged_cee7ee5a43ec44776896c192eb6d0946','1505188452','no'),(10983,'_transient_epc_purged_cee7ee5a43ec44776896c192eb6d0946','1505188392','no'),(10984,'_transient_timeout_epc_purged_563d2caa3b60d7276bd2989354cbec62','1505188452','no'),(10985,'_transient_epc_purged_563d2caa3b60d7276bd2989354cbec62','1505188392','no'),(10986,'_transient_timeout_epc_purged_9e0f3848f86c76ac89390d577838ba65','1505188452','no'),(10987,'_transient_epc_purged_9e0f3848f86c76ac89390d577838ba65','1505188392','no'),(10989,'_site_transient_timeout_et_core_path','1505397437','no'),(10990,'_site_transient_et_core_path','/home/jeremyfe/dev.jeremyfeldman.com/wordpress/wp-content/themes/Divi/core','no'),(10993,'_site_transient_timeout_theme_roots','1505312839','no'),(10994,'_site_transient_theme_roots','a:1:{s:4:\"Divi\";s:7:\"/themes\";}','no'),(10995,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1505311041;s:8:\"response\";a:1:{s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:3:\"5.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.3.zip\";s:6:\"tested\";s:5:\"4.8.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{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:\"3.3.4\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.3.4.zip\";}s:47:\"post-tags-and-categories-for-pages/post-tag.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:48:\"w.org/plugins/post-tags-and-categories-for-pages\";s:4:\"slug\";s:34:\"post-tags-and-categories-for-pages\";s:6:\"plugin\";s:47:\"post-tags-and-categories-for-pages/post-tag.php\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/post-tags-and-categories-for-pages/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/post-tags-and-categories-for-pages.1.4.1.zip\";}s:29:\"use-any-font/use-any-font.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:26:\"w.org/plugins/use-any-font\";s:4:\"slug\";s:12:\"use-any-font\";s:6:\"plugin\";s:29:\"use-any-font/use-any-font.php\";s:11:\"new_version\";s:5:\"4.7.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/use-any-font/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/use-any-font.4.7.3.zip\";}s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:38:\"w.org/plugins/velvet-blues-update-urls\";s:4:\"slug\";s:24:\"velvet-blues-update-urls\";s:6:\"plugin\";s:53:\"velvet-blues-update-urls/velvet-blues-update-urls.php\";s:11:\"new_version\";s:5:\"3.2.7\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/velvet-blues-update-urls/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/velvet-blues-update-urls.3.2.7.zip\";}s:41:\"wordpress-php-info/wordpress-php-info.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-php-info\";s:4:\"slug\";s:18:\"wordpress-php-info\";s:6:\"plugin\";s:41:\"wordpress-php-info/wordpress-php-info.php\";s:11:\"new_version\";s:4:\"16.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-php-info/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-php-info.zip\";}}}','no');
/*!40000 ALTER TABLE `wp_xyud_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_postmeta`
--

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

--
-- Dumping data for table `wp_xyud_postmeta`
--

LOCK TABLES `wp_xyud_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_xyud_postmeta` DISABLE KEYS */;
INSERT INTO `wp_xyud_postmeta` VALUES (16,9,'_publicize_pending','1'),(17,9,'_et_pb_predefined_layout','on'),(18,9,'_et_pb_built_for_post_type','page'),(19,9,'_et_pb_layout_applicability','product_tour'),(20,10,'_publicize_pending','1'),(21,10,'_et_pb_predefined_layout','on'),(22,10,'_et_pb_built_for_post_type','page'),(23,11,'_publicize_pending','1'),(24,11,'_et_pb_predefined_layout','on'),(25,11,'_et_pb_built_for_post_type','page'),(26,12,'_publicize_pending','1'),(27,12,'_et_pb_predefined_layout','on'),(28,12,'_et_pb_built_for_post_type','page'),(29,13,'_publicize_pending','1'),(30,13,'_et_pb_predefined_layout','on'),(31,13,'_et_pb_built_for_post_type','page'),(32,14,'_publicize_pending','1'),(33,14,'_et_pb_predefined_layout','on'),(34,14,'_et_pb_built_for_post_type','page'),(35,15,'_publicize_pending','1'),(36,15,'_et_pb_predefined_layout','on'),(37,15,'_et_pb_built_for_post_type','page'),(38,16,'_publicize_pending','1'),(39,16,'_et_pb_predefined_layout','on'),(40,16,'_et_pb_built_for_post_type','page'),(41,17,'_publicize_pending','1'),(42,17,'_et_pb_predefined_layout','on'),(43,17,'_et_pb_built_for_post_type','page'),(44,18,'_publicize_pending','1'),(45,18,'_et_pb_predefined_layout','on'),(46,18,'_et_pb_built_for_post_type','page'),(47,19,'_publicize_pending','1'),(48,19,'_et_pb_predefined_layout','on'),(49,19,'_et_pb_built_for_post_type','page'),(50,20,'_publicize_pending','1'),(51,20,'_et_pb_predefined_layout','on'),(52,20,'_et_pb_built_for_post_type','page'),(53,21,'_publicize_pending','1'),(54,21,'_et_pb_predefined_layout','on'),(55,21,'_et_pb_built_for_post_type','page'),(56,22,'_publicize_pending','1'),(57,22,'_et_pb_predefined_layout','on'),(58,22,'_et_pb_built_for_post_type','page'),(59,23,'_publicize_pending','1'),(60,23,'_et_pb_predefined_layout','on'),(61,23,'_et_pb_built_for_post_type','page'),(62,24,'_publicize_pending','1'),(63,24,'_et_pb_predefined_layout','on'),(64,24,'_et_pb_built_for_post_type','page'),(65,25,'_publicize_pending','1'),(66,25,'_et_pb_predefined_layout','on'),(67,25,'_et_pb_built_for_post_type','page'),(68,26,'_publicize_pending','1'),(69,26,'_et_pb_predefined_layout','on'),(70,26,'_et_pb_built_for_post_type','page'),(71,27,'_publicize_pending','1'),(72,27,'_et_pb_predefined_layout','on'),(73,27,'_et_pb_built_for_post_type','page'),(74,28,'_publicize_pending','1'),(75,28,'_et_pb_predefined_layout','on'),(76,28,'_et_pb_built_for_post_type','page'),(77,29,'_publicize_pending','1'),(78,29,'_et_pb_predefined_layout','on'),(79,29,'_et_pb_built_for_post_type','page'),(80,30,'_publicize_pending','1'),(81,30,'_et_pb_predefined_layout','on'),(82,30,'_et_pb_built_for_post_type','page'),(83,31,'_publicize_pending','1'),(84,31,'_et_pb_predefined_layout','on'),(85,31,'_et_pb_built_for_post_type','page'),(86,32,'_publicize_pending','1'),(87,32,'_et_pb_predefined_layout','on'),(88,32,'_et_pb_built_for_post_type','page'),(89,33,'_publicize_pending','1'),(90,33,'_et_pb_predefined_layout','on'),(91,33,'_et_pb_built_for_post_type','page'),(92,34,'_publicize_pending','1'),(93,34,'_et_pb_predefined_layout','on'),(94,34,'_et_pb_built_for_post_type','page'),(95,35,'_publicize_pending','1'),(96,35,'_et_pb_predefined_layout','on'),(97,35,'_et_pb_built_for_post_type','page'),(98,36,'_publicize_pending','1'),(99,36,'_et_pb_predefined_layout','on'),(100,36,'_et_pb_built_for_post_type','page'),(101,37,'_publicize_pending','1'),(102,37,'_et_pb_predefined_layout','on'),(103,37,'_et_pb_built_for_post_type','page'),(104,38,'_publicize_pending','1'),(105,38,'_et_pb_predefined_layout','on'),(106,38,'_et_pb_built_for_post_type','page'),(107,39,'_publicize_pending','1'),(108,39,'_et_pb_predefined_layout','on'),(109,39,'_et_pb_built_for_post_type','page'),(110,40,'_publicize_pending','1'),(111,40,'_et_pb_predefined_layout','on'),(112,40,'_et_pb_built_for_post_type','page'),(113,41,'_publicize_pending','1'),(114,41,'_et_pb_predefined_layout','on'),(115,41,'_et_pb_built_for_post_type','page'),(116,42,'_edit_last','5'),(117,42,'_wp_page_template','default'),(118,42,'_publicize_pending','1'),(119,42,'_et_pb_post_hide_nav','default'),(120,42,'_et_pb_page_layout','et_right_sidebar'),(121,42,'_et_pb_side_nav','off'),(122,42,'_et_pb_use_builder','on'),(123,42,'_et_builder_version','BB|Divi|3.0.69'),(124,42,'_et_pb_ab_stats_refresh_interval','hourly'),(125,42,'_et_pb_old_content','<h1> </h1>'),(126,42,'_et_pb_enable_shortcode_tracking',''),(127,42,'_et_pb_custom_css',''),(128,42,'_edit_lock','1505311077:1'),(129,44,'_edit_last','1'),(130,44,'_wp_page_template','default'),(131,44,'_publicize_pending','1'),(132,44,'_et_pb_post_hide_nav','default'),(133,44,'_et_pb_page_layout','et_right_sidebar'),(134,44,'_et_pb_side_nav','off'),(135,44,'_et_pb_use_builder',''),(136,44,'_et_builder_version','BB|Divi|3.0.65'),(137,44,'_et_pb_ab_stats_refresh_interval','hourly'),(138,44,'_et_pb_old_content',''),(139,44,'_et_pb_enable_shortcode_tracking',''),(140,44,'_et_pb_custom_css',''),(141,44,'_edit_lock','1502337641:1'),(142,46,'_edit_last','1'),(143,46,'_wp_page_template','default'),(144,46,'_publicize_pending','1'),(145,46,'_et_pb_post_hide_nav','default'),(146,46,'_et_pb_page_layout','et_right_sidebar'),(147,46,'_et_pb_side_nav','off'),(148,46,'_et_pb_use_builder','on'),(149,46,'_et_builder_version','BB|Divi|3.0.69'),(150,46,'_et_pb_ab_stats_refresh_interval','hourly'),(151,46,'_et_pb_old_content',''),(152,46,'_et_pb_enable_shortcode_tracking',''),(153,46,'_et_pb_custom_css','.et_pb_text {\r\nmargin-bottom: 0 !important;\r\n}\r\nbody #page-container .et_pb_button_0 {\r\npadding-left: 0;\r\n}'),(154,46,'_edit_lock','1502836861:1'),(155,48,'_edit_last','1'),(156,48,'_wp_page_template','default'),(157,48,'_publicize_pending','1'),(158,48,'_et_pb_post_hide_nav','default'),(159,48,'_et_pb_page_layout','et_right_sidebar'),(160,48,'_et_pb_side_nav','off'),(161,48,'_et_pb_use_builder','on'),(162,48,'_et_builder_version','VB|Divi|3.0.69'),(163,48,'_et_pb_ab_stats_refresh_interval','hourly'),(164,48,'_et_pb_old_content',''),(165,48,'_et_pb_enable_shortcode_tracking',''),(166,48,'_et_pb_custom_css',''),(167,48,'_edit_lock','1502825566:1'),(168,50,'_edit_last','1'),(169,50,'_wp_page_template','default'),(170,50,'_publicize_pending','1'),(171,50,'_et_pb_post_hide_nav','default'),(172,50,'_et_pb_page_layout','et_right_sidebar'),(173,50,'_et_pb_side_nav','off'),(174,50,'_et_pb_use_builder','on'),(175,50,'_et_builder_version','VB|Divi|3.0.65'),(176,50,'_et_pb_ab_stats_refresh_interval','hourly'),(177,50,'_et_pb_old_content',''),(178,50,'_et_pb_enable_shortcode_tracking',''),(179,50,'_et_pb_custom_css','.et_pb_text {\r\nmargin-bottom: 0 !important;\r\n}'),(180,50,'_edit_lock','1502483270:1'),(181,52,'_edit_last','1'),(182,52,'_wp_page_template','default'),(183,52,'_publicize_pending','1'),(184,52,'_et_pb_post_hide_nav','default'),(185,52,'_et_pb_page_layout','et_right_sidebar'),(186,52,'_et_pb_side_nav','off'),(187,52,'_et_pb_use_builder','on'),(188,52,'_et_builder_version','BB|Divi|3.0.71'),(189,52,'_et_pb_ab_stats_refresh_interval','hourly'),(190,52,'_et_pb_old_content',''),(191,52,'_et_pb_enable_shortcode_tracking',''),(192,52,'_et_pb_custom_css',''),(193,52,'_edit_lock','1503938248:1'),(194,54,'_menu_item_type','post_type'),(195,54,'_menu_item_menu_item_parent','0'),(196,54,'_menu_item_object_id','50'),(197,54,'_menu_item_object','page'),(198,54,'_menu_item_target',''),(199,54,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(200,54,'_menu_item_xfn',''),(201,54,'_menu_item_url',''),(203,55,'_menu_item_type','post_type'),(204,55,'_menu_item_menu_item_parent','0'),(205,55,'_menu_item_object_id','48'),(206,55,'_menu_item_object','page'),(207,55,'_menu_item_target',''),(208,55,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(209,55,'_menu_item_xfn',''),(210,55,'_menu_item_url',''),(212,56,'_menu_item_type','post_type'),(213,56,'_menu_item_menu_item_parent','0'),(214,56,'_menu_item_object_id','46'),(215,56,'_menu_item_object','page'),(216,56,'_menu_item_target',''),(217,56,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(218,56,'_menu_item_xfn',''),(219,56,'_menu_item_url',''),(221,57,'_menu_item_type','post_type'),(222,57,'_menu_item_menu_item_parent','0'),(223,57,'_menu_item_object_id','44'),(224,57,'_menu_item_object','page'),(225,57,'_menu_item_target',''),(226,57,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(227,57,'_menu_item_xfn',''),(228,57,'_menu_item_url',''),(230,58,'_menu_item_type','post_type'),(231,58,'_menu_item_menu_item_parent','0'),(232,58,'_menu_item_object_id','42'),(233,58,'_menu_item_object','page'),(234,58,'_menu_item_target',''),(235,58,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(236,58,'_menu_item_xfn',''),(237,58,'_menu_item_url',''),(239,59,'_menu_item_type','post_type'),(240,59,'_menu_item_menu_item_parent','57'),(241,59,'_menu_item_object_id','52'),(242,59,'_menu_item_object','page'),(243,59,'_menu_item_target',''),(244,59,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(245,59,'_menu_item_xfn',''),(246,59,'_menu_item_url',''),(248,58,'_publicize_pending','1'),(249,57,'_publicize_pending','1'),(250,59,'_publicize_pending','1'),(251,56,'_publicize_pending','1'),(252,55,'_publicize_pending','1'),(253,54,'_publicize_pending','1'),(262,42,'_et_pb_use_ab_testing','off'),(263,42,'_et_pb_ab_refresh_interval','hourly'),(265,42,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"42\" /]'),(277,86,'_wp_attached_file','2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png'),(278,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:510;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2016-10-14-at-6.11.36-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2016-10-14-at-6.11.36-PM-300x217.png\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2016-10-14-at-6.11.36-PM-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2016-10-14-at-6.11.36-PM-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2016-10-14-at-6.11.36-PM-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2016-10-14-at-6.11.36-PM-400x510.png\";s:5:\"width\";i:400;s:6:\"height\";i:510;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:{}}}'),(279,52,'_et_pb_use_ab_testing','off'),(280,52,'_et_pb_ab_refresh_interval','hourly'),(282,52,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"52\" /]'),(284,52,'_et_pb_content_area_background_color','rgba(255,255,255,0.14)'),(311,166,'_wp_attached_file','2017/08/02.png'),(312,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:9;s:6:\"height\";i:18;s:4:\"file\";s:14:\"2017/08/02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(313,167,'_wp_attached_file','2017/08/03.png'),(314,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:23;s:6:\"height\";i:18;s:4:\"file\";s:14:\"2017/08/03.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(317,25729,'_et_pb_built_for_post_type','page'),(319,48,'_et_pb_use_ab_testing','off'),(320,48,'_et_pb_ab_refresh_interval','hourly'),(322,48,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"48\" /]'),(324,48,'_et_pb_dark_text_color','#212121'),(325,48,'_et_pb_content_area_background_color','#eceff1'),(326,48,'_et_pb_section_background_color','#eceff1'),(331,25582,'_et_pb_built_for_post_type','page'),(332,25754,'_wp_attached_file','2017/08/05-05-1.png'),(333,25754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:19;s:6:\"height\";i:16;s:4:\"file\";s:19:\"2017/08/05-05-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(336,25756,'_wp_attached_file','2017/08/01-fb.png'),(337,25756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:9;s:6:\"height\";i:18;s:4:\"file\";s:17:\"2017/08/01-fb.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(338,25757,'_wp_attached_file','2017/08/02-twitter.png'),(339,25757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:23;s:6:\"height\";i:18;s:4:\"file\";s:22:\"2017/08/02-twitter.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(350,25581,'_et_pb_built_for_post_type','page'),(351,25580,'_et_pb_built_for_post_type','page'),(352,25579,'_et_pb_built_for_post_type','page'),(353,25569,'_et_pb_built_for_post_type','page'),(388,25831,'_wp_attached_file','2017/07/cropped-IMG_6145.jpg'),(389,25831,'_wp_attachment_context','site-icon'),(390,25831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2017/07/cropped-IMG_6145.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-150x150.jpg\";s:5:\"width\";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:\"cropped-IMG_6145-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-400x512.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:28:\"cropped-IMG_6145-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:26:\"cropped-IMG_6145-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(401,25837,'_wp_attached_file','2017/08/Site_Logo_v5.png'),(402,25837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1808;s:6:\"height\";i:208;s:4:\"file\";s:24:\"2017/08/Site_Logo_v5.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Site_Logo_v5-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:\"Site_Logo_v5-300x35.png\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Site_Logo_v5-768x88.png\";s:5:\"width\";i:768;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Site_Logo_v5-1024x118.png\";s:5:\"width\";i:1024;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Site_Logo_v5-400x208.png\";s:5:\"width\";i:400;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"Site_Logo_v5-1080x208.png\";s:5:\"width\";i:1080;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Site_Logo_v5-400x208.png\";s:5:\"width\";i:400;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Site_Logo_v5-510x208.png\";s:5:\"width\";i:510;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"Site_Logo_v5-1080x124.png\";s:5:\"width\";i:1080;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Site_Logo_v5-400x208.png\";s:5:\"width\";i:400;s:6:\"height\";i:208;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:{}}}'),(405,26625,'_et_pb_built_for_post_type','page'),(406,46,'_et_pb_use_ab_testing','off'),(407,46,'_et_pb_ab_refresh_interval','hourly'),(409,46,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"46\" /]'),(414,26652,'_wp_attached_file','2017/08/JFeldman_AwardWinningCD.pdf'),(415,26652,'_edit_lock','1501799315:1'),(428,26697,'_wp_attached_file','2017/08/02-1.png'),(429,26697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:43;s:6:\"height\";i:13;s:4:\"file\";s:16:\"2017/08/02-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(431,26698,'_wp_attached_file','2017/08/054.jpg'),(432,26698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:497;s:4:\"file\";s:15:\"2017/08/054.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"054-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"054-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"054-768x294.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"054-1024x391.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"054-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"054-1080x497.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"054-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"054-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"054-1080x413.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"054-400x497.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(433,25042,'_et_pb_built_for_post_type','page'),(434,50,'_et_pb_use_ab_testing','off'),(435,50,'_et_pb_ab_refresh_interval','hourly'),(437,50,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"50\" /]'),(473,26843,'_wp_attached_file','2017/08/chewFeld_adcepts_Page_2.jpg'),(474,26843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1295;s:6:\"height\";i:840;s:4:\"file\";s:35:\"2017/08/chewFeld_adcepts_Page_2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_2-768x498.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"chewFeld_adcepts_Page_2-1024x664.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"chewFeld_adcepts_Page_2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"chewFeld_adcepts_Page_2-1080x701.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:701;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(475,26844,'_wp_attached_file','2017/08/chewFeld_adcepts_Page_3.jpg'),(476,26844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1309;s:6:\"height\";i:849;s:4:\"file\";s:35:\"2017/08/chewFeld_adcepts_Page_3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_3-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_3-768x498.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"chewFeld_adcepts_Page_3-1024x664.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"chewFeld_adcepts_Page_3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"chewFeld_adcepts_Page_3-1080x700.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"chewFeld_adcepts_Page_3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(482,26850,'_wp_attached_file','2017/08/Sun_01.jpg'),(483,26850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1227;s:6:\"height\";i:794;s:4:\"file\";s:18:\"2017/08/Sun_01.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Sun_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Sun_01-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Sun_01-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Sun_01-1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Sun_01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"Sun_01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Sun_01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Sun_01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"Sun_01-1080x699.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Sun_01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(501,26971,'_et_pb_module_type','et_pb_button'),(502,26971,'_et_pb_built_for_post_type','page'),(507,27016,'_wp_attached_file','2017/08/Bs_Background_8_8.gif'),(508,27016,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1336;s:6:\"height\";i:752;s:4:\"file\";s:29:\"2017/08/Bs_Background_8_8.gif\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bs_Background_8_8-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Bs_Background_8_8-300x169.gif\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Bs_Background_8_8-768x432.gif\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Bs_Background_8_8-1024x576.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Bs_Background_8_8-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"Bs_Background_8_8-1080x675.gif\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Bs_Background_8_8-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Bs_Background_8_8-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"Bs_Background_8_8-1080x608.gif\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Bs_Background_8_8-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(512,27053,'_et_pb_built_for_post_type','page'),(513,27059,'_et_pb_built_for_post_type','page'),(517,27093,'_et_pb_built_for_post_type','page'),(531,27106,'_wp_attached_file','2017/08/1_2-07.jpg'),(532,27106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:1037;s:4:\"file\";s:18:\"2017/08/1_2-07.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_2-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_2-07-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_2-07-768x615.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:615;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_2-07-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_2-07-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_2-07-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_2-07-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_2-07-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_2-07-1080x864.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_2-07-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(533,27107,'_wp_attached_file','2017/08/1_2-08.jpg'),(534,27107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1468;s:6:\"height\";i:1038;s:4:\"file\";s:18:\"2017/08/1_2-08.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_2-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_2-08-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_2-08-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_2-08-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_2-08-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_2-08-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_2-08-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_2-08-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_2-08-1080x764.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_2-08-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(535,27108,'_wp_attached_file','2017/08/1_2-09.jpg'),(536,27108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1650;s:6:\"height\";i:1273;s:4:\"file\";s:18:\"2017/08/1_2-09.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_2-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_2-09-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_2-09-768x593.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_2-09-1024x790.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:790;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_2-09-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_2-09-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_2-09-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_2-09-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_2-09-1080x833.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:833;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_2-09-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(537,27109,'_et_pb_built_for_post_type','page'),(565,27127,'_wp_attached_file','2017/08/1_02-01_Frame.jpg'),(566,27127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:681;s:6:\"height\";i:570;s:4:\"file\";s:25:\"2017/08/1_02-01_Frame.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"1_02-01_Frame-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"1_02-01_Frame-300x251.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"1_02-01_Frame-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"1_02-01_Frame-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"1_02-01_Frame-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"1_02-01_Frame-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(567,27128,'_wp_attached_file','2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM.png'),(568,27128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:329;s:6:\"height\";i:277;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2017-08-09-at-9.07.58-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2017-08-09-at-9.07.58-PM-300x253.png\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2017-08-09-at-9.07.58-PM-329x250.png\";s:5:\"width\";i:329;s:6:\"height\";i:250;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:{}}}'),(569,27129,'_wp_attached_file','2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png'),(570,27129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:326;s:6:\"height\";i:272;s:4:\"file\";s:50:\"2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2017-08-09-at-9.07.58-PM-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2017-08-09-at-9.07.58-PM-1-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2017-08-09-at-9.07.58-PM-1-326x250.png\";s:5:\"width\";i:326;s:6:\"height\";i:250;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:{}}}'),(571,27130,'_wp_attached_file','2017/08/1_02-03_Frame.jpg'),(572,27130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:679;s:6:\"height\";i:502;s:4:\"file\";s:25:\"2017/08/1_02-03_Frame.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"1_02-03_Frame-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"1_02-03_Frame-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"1_02-03_Frame-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"1_02-03_Frame-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"1_02-03_Frame-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"1_02-03_Frame-400x502.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(573,27133,'_wp_attached_file','2017/08/1_2-04_Frame.jpg'),(574,27133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:678;s:6:\"height\";i:515;s:4:\"file\";s:24:\"2017/08/1_2-04_Frame.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"1_2-04_Frame-150x150.jpg\";s:5:\"width\";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:\"1_2-04_Frame-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"1_2-04_Frame-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"1_2-04_Frame-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"1_2-04_Frame-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"1_2-04_Frame-400x515.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(575,27136,'_wp_attached_file','2017/08/1_2-05_Frame.jpg'),(576,27136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:726;s:6:\"height\";i:438;s:4:\"file\";s:24:\"2017/08/1_2-05_Frame.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"1_2-05_Frame-150x150.jpg\";s:5:\"width\";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:\"1_2-05_Frame-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"1_2-05_Frame-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"1_2-05_Frame-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"1_2-05_Frame-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"1_2-05_Frame-400x438.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(577,27137,'_wp_attached_file','2017/08/1_2-06_Frame.jpg'),(578,27137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:727;s:6:\"height\";i:489;s:4:\"file\";s:24:\"2017/08/1_2-06_Frame.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"1_2-06_Frame-150x150.jpg\";s:5:\"width\";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:\"1_2-06_Frame-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"1_2-06_Frame-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"1_2-06_Frame-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"1_2-06_Frame-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"1_2-06_Frame-400x489.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:489;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(589,27208,'_et_pb_built_for_post_type','page'),(595,50,'_et_pb_ab_subjects',''),(606,27293,'_edit_last','1'),(607,27293,'_wp_page_template','default'),(608,27293,'_et_pb_post_hide_nav','default'),(609,27293,'_et_pb_page_layout','et_right_sidebar'),(610,27293,'_et_pb_side_nav','off'),(611,27293,'_et_pb_use_builder','on'),(612,27293,'_et_builder_version','VB|Divi|3.0.71'),(613,27293,'_et_pb_ab_stats_refresh_interval','hourly'),(614,27293,'_et_pb_old_content',''),(615,27293,'_et_pb_enable_shortcode_tracking',''),(616,27293,'_et_pb_custom_css',''),(617,27293,'_edit_lock','1503937753:1'),(618,27295,'_menu_item_type','post_type'),(619,27295,'_menu_item_menu_item_parent','57'),(620,27295,'_menu_item_object_id','27293'),(621,27295,'_menu_item_object','page'),(622,27295,'_menu_item_target',''),(623,27295,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(624,27295,'_menu_item_xfn',''),(625,27295,'_menu_item_url',''),(627,27296,'_et_pb_built_for_post_type','page'),(633,27293,'_et_pb_use_ab_testing','off'),(634,27293,'_et_pb_ab_refresh_interval','hourly'),(636,27293,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"27293\" /]'),(641,27325,'_wp_trash_meta_status','publish'),(642,27325,'_wp_trash_meta_time','1502823930'),(643,48,'_et_pb_ab_subjects',''),(645,27348,'_edit_lock','1503937875:1'),(646,27348,'_edit_last','1'),(647,27348,'_wp_page_template','default'),(648,27348,'_et_pb_post_hide_nav','default'),(649,27348,'_et_pb_page_layout','et_right_sidebar'),(650,27348,'_et_pb_side_nav','off'),(651,27348,'_et_pb_use_builder','on'),(652,27348,'_et_builder_version','VB|Divi|3.0.71'),(653,27348,'_et_pb_ab_stats_refresh_interval','hourly'),(654,27348,'_et_pb_old_content',''),(655,27348,'_et_pb_enable_shortcode_tracking',''),(656,27348,'_et_pb_custom_css',''),(657,27350,'_menu_item_type','post_type'),(658,27350,'_menu_item_menu_item_parent','57'),(659,27350,'_menu_item_object_id','27348'),(660,27350,'_menu_item_object','page'),(661,27350,'_menu_item_target',''),(662,27350,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(663,27350,'_menu_item_xfn',''),(664,27350,'_menu_item_url',''),(673,27358,'_wp_attached_file','2017/08/1_14-02.jpg'),(674,27358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1567;s:6:\"height\";i:2100;s:4:\"file\";s:19:\"2017/08/1_14-02.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"1_14-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"1_14-02-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1_14-02-768x1029.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1029;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"1_14-02-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"1_14-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"1_14-02-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"1_14-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"1_14-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"1_14-02-1080x1447.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"1_14-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"1_14-02-1567x1800.jpg\";s:5:\"width\";i:1567;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(675,27359,'_wp_attached_file','2017/08/1_14-03.jpg'),(676,27359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1567;s:6:\"height\";i:2100;s:4:\"file\";s:19:\"2017/08/1_14-03.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"1_14-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"1_14-03-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1_14-03-768x1029.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1029;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"1_14-03-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"1_14-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"1_14-03-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"1_14-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"1_14-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"1_14-03-1080x1447.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"1_14-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"1_14-03-1567x1800.jpg\";s:5:\"width\";i:1567;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(677,27360,'_wp_attached_file','2017/08/1_14-04.jpg'),(678,27360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1567;s:6:\"height\";i:2100;s:4:\"file\";s:19:\"2017/08/1_14-04.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"1_14-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"1_14-04-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"1_14-04-768x1029.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1029;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"1_14-04-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"1_14-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"1_14-04-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"1_14-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"1_14-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"1_14-04-1080x1447.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1447;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"1_14-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"1_14-04-1567x1800.jpg\";s:5:\"width\";i:1567;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(679,27361,'_wp_attached_file','2017/08/1_14-01.jpg'),(680,27361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4026;s:6:\"height\";i:2886;s:4:\"file\";s:19:\"2017/08/1_14-01.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"1_14-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"1_14-01-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"1_14-01-768x551.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"1_14-01-1024x734.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:734;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"1_14-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"1_14-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"1_14-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"1_14-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"1_14-01-1080x774.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:774;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"1_14-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:21:\"1_14-01-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(681,27348,'_et_pb_use_ab_testing','off'),(682,27348,'_et_pb_ab_refresh_interval','hourly'),(684,27348,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"27348\" /]'),(686,27312,'_wp_trash_meta_status','auto-draft'),(687,27312,'_wp_trash_meta_time','1503116375'),(688,27312,'_wp_desired_post_slug',''),(693,27374,'_wp_trash_meta_status','auto-draft'),(694,27374,'_wp_trash_meta_time','1503477527'),(695,27374,'_wp_desired_post_slug',''),(698,27380,'_wp_trash_meta_status','auto-draft'),(699,27380,'_wp_trash_meta_time','1503679258'),(700,27380,'_wp_desired_post_slug',''),(703,27386,'_edit_last','7'),(704,27386,'_wp_page_template','default'),(705,27386,'_et_pb_post_hide_nav','default'),(706,27386,'_et_pb_page_layout','et_right_sidebar'),(707,27386,'_et_pb_side_nav','off'),(708,27386,'_et_pb_use_builder','on'),(709,27386,'_et_builder_version','BB|Divi|3.0.70'),(710,27386,'_et_pb_ab_stats_refresh_interval','hourly'),(711,27386,'_et_pb_old_content',''),(712,27386,'_et_pb_enable_shortcode_tracking',''),(713,27386,'_et_pb_custom_css',''),(714,27386,'_edit_lock','1503820326:7'),(717,27409,'_wp_attached_file','2017/08/NYPL.Background.black_.MIDTONE.jpg'),(718,27409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1336;s:6:\"height\";i:752;s:4:\"file\";s:42:\"2017/08/NYPL.Background.black_.MIDTONE.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"NYPL.Background.black_.MIDTONE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"NYPL.Background.black_.MIDTONE-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"NYPL.Background.black_.MIDTONE-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"NYPL.Background.black_.MIDTONE-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"NYPL.Background.black_.MIDTONE-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"NYPL.Background.black_.MIDTONE-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"NYPL.Background.black_.MIDTONE-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"NYPL.Background.black_.MIDTONE-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"NYPL.Background.black_.MIDTONE-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"NYPL.Background.black_.MIDTONE-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(719,27416,'_et_pb_module_type','et_pb_text'),(720,27416,'_et_pb_excluded_global_options','[]'),(721,27416,'_et_pb_built_for_post_type','page'),(722,27417,'_et_pb_module_type','et_pb_text'),(723,27417,'_et_pb_excluded_global_options','[]'),(724,27417,'_et_pb_built_for_post_type','page'),(726,27423,'_et_pb_module_type','et_pb_text'),(727,27423,'_et_pb_excluded_global_options','[]'),(728,27423,'_et_pb_built_for_post_type','page'),(730,27430,'_wp_attached_file','2017/08/1_4-03.jpg'),(731,27430,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:7020;s:6:\"height\";i:4950;s:4:\"file\";s:18:\"2017/08/1_4-03.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_4-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_4-03-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_4-03-768x542.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_4-03-1024x722.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_4-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_4-03-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_4-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_4-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_4-03-1080x762.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:762;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_4-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:20:\"1_4-03-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(732,27431,'_wp_attached_file','2017/08/1_4-04.jpg'),(733,27431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2017/08/1_4-04.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_4-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_4-04-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_4-04-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_4-04-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_4-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_4-04-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_4-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_4-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_4-04-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_4-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(734,27432,'_wp_attached_file','2017/08/1_4-05.jpg'),(735,27432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2017/08/1_4-05.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_4-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_4-05-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_4-05-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_4-05-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_4-05-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_4-05-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_4-05-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_4-05-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_4-05-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_4-05-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(736,27433,'_edit_lock','1503937765:1'),(737,27433,'_edit_last','1'),(738,27433,'_wp_page_template','default'),(739,27433,'_et_pb_post_hide_nav','default'),(740,27433,'_et_pb_page_layout','et_right_sidebar'),(741,27433,'_et_pb_side_nav','off'),(742,27433,'_et_pb_use_builder','on'),(743,27433,'_et_builder_version','VB|Divi|3.0.70'),(744,27433,'_et_pb_ab_stats_refresh_interval','hourly'),(745,27433,'_et_pb_old_content',''),(746,27433,'_et_pb_enable_shortcode_tracking',''),(747,27433,'_et_pb_custom_css',''),(748,27435,'_menu_item_type','post_type'),(749,27435,'_menu_item_menu_item_parent','57'),(750,27435,'_menu_item_object_id','27433'),(751,27435,'_menu_item_object','page'),(752,27435,'_menu_item_target',''),(753,27435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(754,27435,'_menu_item_xfn',''),(755,27435,'_menu_item_url',''),(757,27436,'_et_pb_built_for_post_type','page'),(758,27433,'_et_pb_use_ab_testing','off'),(759,27433,'_et_pb_ab_refresh_interval','hourly'),(761,27433,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"27433\" /]'),(763,27457,'_et_pb_module_type','et_pb_text'),(764,27457,'_et_pb_built_for_post_type','page'),(765,27460,'_et_pb_module_type','et_pb_text'),(766,27460,'_et_pb_built_for_post_type','page'),(769,27476,'_edit_lock','1503937777:1'),(770,27476,'_edit_last','1'),(771,27476,'_wp_page_template','default'),(772,27476,'_et_pb_post_hide_nav','default'),(773,27476,'_et_pb_page_layout','et_right_sidebar'),(774,27476,'_et_pb_side_nav','off'),(775,27476,'_et_pb_use_builder','on'),(776,27476,'_et_builder_version','VB|Divi|3.0.70'),(777,27476,'_et_pb_ab_stats_refresh_interval','hourly'),(778,27476,'_et_pb_old_content',''),(779,27476,'_et_pb_enable_shortcode_tracking',''),(780,27476,'_et_pb_custom_css',''),(781,27478,'_menu_item_type','post_type'),(782,27478,'_menu_item_menu_item_parent','57'),(783,27478,'_menu_item_object_id','27476'),(784,27478,'_menu_item_object','page'),(785,27478,'_menu_item_target',''),(786,27478,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(787,27478,'_menu_item_xfn',''),(788,27478,'_menu_item_url',''),(790,27481,'_wp_attached_file','2017/08/1_5-02.jpg'),(791,27481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:1584;s:4:\"file\";s:18:\"2017/08/1_5-02.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_5-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_5-02-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_5-02-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_5-02-1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_5-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_5-02-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_5-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_5-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_5-02-1080x699.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_5-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(792,27482,'_wp_attached_file','2017/08/1_5-03.jpg'),(793,27482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:1584;s:4:\"file\";s:18:\"2017/08/1_5-03.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_5-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_5-03-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_5-03-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_5-03-1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_5-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_5-03-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_5-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_5-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_5-03-1080x699.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_5-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(794,27483,'_wp_attached_file','2017/08/1_5-04.jpg'),(795,27483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:1584;s:4:\"file\";s:18:\"2017/08/1_5-04.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_5-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_5-04-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_5-04-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_5-04-1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_5-04-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_5-04-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_5-04-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_5-04-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_5-04-1080x699.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_5-04-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(796,27484,'_wp_attached_file','2017/08/1_5-05.jpg'),(797,27484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:1584;s:4:\"file\";s:18:\"2017/08/1_5-05.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_5-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_5-05-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_5-05-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_5-05-1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_5-05-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_5-05-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_5-05-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_5-05-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_5-05-1080x699.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_5-05-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(798,27485,'_wp_attached_file','2017/08/1_5-06.jpg'),(799,27485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:1584;s:4:\"file\";s:18:\"2017/08/1_5-06.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_5-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_5-06-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_5-06-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_5-06-1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_5-06-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_5-06-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_5-06-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_5-06-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_5-06-1080x699.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_5-06-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(800,27487,'_wp_attached_file','2017/08/1_4-01.jpg'),(801,27487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2880;s:6:\"height\";i:1626;s:4:\"file\";s:18:\"2017/08/1_4-01.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_4-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_4-01-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_4-01-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_4-01-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_4-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_4-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_4-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_4-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_4-01-1080x610.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_4-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:20:\"1_4-01-2880x1626.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1626;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(802,27489,'_wp_attached_file','2017/08/1_4-02.jpg'),(803,27489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2880;s:6:\"height\";i:1619;s:4:\"file\";s:18:\"2017/08/1_4-02.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_4-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_4-02-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_4-02-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_4-02-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_4-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_4-02-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_4-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_4-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_4-02-1080x607.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:607;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_4-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:20:\"1_4-02-2880x1619.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1619;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(804,27433,'_et_pb_ab_subjects',''),(805,27499,'_wp_attached_file','2017/08/1_5-01.jpg'),(806,27499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2880;s:6:\"height\";i:1615;s:4:\"file\";s:18:\"2017/08/1_5-01.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_5-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_5-01-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_5-01-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_5-01-1024x574.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_5-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"1_5-01-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_5-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_5-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"1_5-01-1080x606.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:606;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_5-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:20:\"1_5-01-2880x1615.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1615;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(807,27476,'_et_pb_use_ab_testing','off'),(808,27476,'_et_pb_ab_refresh_interval','hourly'),(810,27476,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"27476\" /]'),(811,27476,'_et_pb_ab_subjects',''),(812,27515,'_edit_lock','1503939280:1'),(813,27515,'_edit_last','1'),(814,27515,'_wp_page_template','default'),(815,27515,'_et_pb_post_hide_nav','default'),(816,27515,'_et_pb_page_layout','et_right_sidebar'),(817,27515,'_et_pb_side_nav','off'),(818,27515,'_et_pb_use_builder','on'),(819,27515,'_et_builder_version','VB|Divi|3.0.71'),(820,27515,'_et_pb_ab_stats_refresh_interval','hourly'),(821,27515,'_et_pb_old_content',''),(822,27515,'_et_pb_enable_shortcode_tracking',''),(823,27515,'_et_pb_custom_css',''),(824,27517,'_menu_item_type','post_type'),(825,27517,'_menu_item_menu_item_parent','57'),(826,27517,'_menu_item_object_id','27515'),(827,27517,'_menu_item_object','page'),(828,27517,'_menu_item_target',''),(829,27517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(830,27517,'_menu_item_xfn',''),(831,27517,'_menu_item_url',''),(833,27520,'_et_pb_built_for_post_type','page'),(834,27524,'_wp_attached_file','2017/08/1_3-01.jpg'),(835,27524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:1050;s:4:\"file\";s:18:\"2017/08/1_3-01.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_3-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_3-01-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_3-01-768x999.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:999;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_3-01-787x1024.jpg\";s:5:\"width\";i:787;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_3-01-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"1_3-01-807x675.jpg\";s:5:\"width\";i:807;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_3-01-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_3-01-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_3-01-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(836,27525,'_wp_attached_file','2017/08/1_3-02.jpg'),(837,27525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:1050;s:4:\"file\";s:18:\"2017/08/1_3-02.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_3-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_3-02-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_3-02-768x999.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:999;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_3-02-787x1024.jpg\";s:5:\"width\";i:787;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_3-02-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"1_3-02-807x675.jpg\";s:5:\"width\";i:807;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_3-02-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_3-02-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_3-02-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(838,27526,'_wp_attached_file','2017/08/1_3-03.jpg'),(839,27526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:1050;s:4:\"file\";s:18:\"2017/08/1_3-03.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"1_3-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"1_3-03-231x300.jpg\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"1_3-03-768x999.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:999;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"1_3-03-787x1024.jpg\";s:5:\"width\";i:787;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"1_3-03-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"1_3-03-807x675.jpg\";s:5:\"width\";i:807;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"1_3-03-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"1_3-03-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"1_3-03-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(840,27515,'_et_pb_use_ab_testing','off'),(841,27515,'_et_pb_ab_refresh_interval','hourly'),(843,27515,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"27515\" /]'),(844,27531,'_et_pb_built_for_post_type','page'),(846,27538,'_wp_attached_file','2017/08/1_3.jpg'),(847,27538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1336;s:6:\"height\";i:891;s:4:\"file\";s:15:\"2017/08/1_3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1_3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"1_3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1_3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:15:\"1_3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:16:\"1_3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:15:\"1_3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:15:\"1_3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:16:\"1_3-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:15:\"1_3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:12:\"RondaKimbrow\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(848,27515,'_et_pb_ab_subjects',''),(849,27293,'_et_pb_ab_subjects',''),(850,27348,'_et_pb_ab_subjects',''),(851,27549,'_edit_lock','1504010209:1'),(852,27549,'_edit_last','1'),(853,27549,'_wp_page_template','default'),(854,27549,'_et_pb_post_hide_nav','default'),(855,27549,'_et_pb_page_layout','et_right_sidebar'),(856,27549,'_et_pb_side_nav','off'),(857,27549,'_et_pb_use_builder','on'),(858,27549,'_et_builder_version','BB|Divi|3.0.71'),(859,27549,'_et_pb_ab_stats_refresh_interval','hourly'),(860,27549,'_et_pb_old_content',''),(861,27549,'_et_pb_enable_shortcode_tracking',''),(862,27549,'_et_pb_custom_css',''),(863,27551,'_menu_item_type','post_type'),(864,27551,'_menu_item_menu_item_parent','57'),(865,27551,'_menu_item_object_id','27549'),(866,27551,'_menu_item_object','page'),(867,27551,'_menu_item_target',''),(868,27551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(869,27551,'_menu_item_xfn',''),(870,27551,'_menu_item_url',''),(872,27549,'_wp_trash_meta_status','publish'),(873,27549,'_wp_trash_meta_time','1504010393'),(874,27549,'_wp_desired_post_slug','1_19'),(875,27385,'_wp_trash_meta_status','auto-draft'),(876,27385,'_wp_trash_meta_time','1504040310'),(877,27385,'_wp_desired_post_slug',''),(880,27386,'_wp_desired_post_slug','test'),(883,27558,'_edit_last','8'),(884,27558,'_wp_page_template','default'),(885,27558,'_et_pb_post_hide_nav','default'),(886,27558,'_et_pb_page_layout','et_right_sidebar'),(887,27558,'_et_pb_side_nav','off'),(888,27558,'_et_pb_use_builder','on'),(889,27558,'_et_builder_version','VB|Divi|3.0.71'),(890,27558,'_et_pb_ab_stats_refresh_interval','hourly'),(891,27558,'_et_pb_old_content',''),(892,27558,'_et_pb_enable_shortcode_tracking',''),(893,27558,'_et_pb_custom_css',''),(894,27558,'_edit_lock','1504086422:8'),(895,27558,'_et_pb_use_ab_testing','off'),(896,27558,'_et_pb_ab_refresh_interval','hourly'),(897,27558,'_et_pb_ab_subjects',''),(898,27558,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"27558\" /]'),(899,27556,'_wp_trash_meta_status','auto-draft'),(900,27556,'_wp_trash_meta_time','1504451120'),(901,27556,'_wp_desired_post_slug',''),(904,27558,'_wp_desired_post_slug','test');
/*!40000 ALTER TABLE `wp_xyud_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_posts`
--

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

--
-- Dumping data for table `wp_xyud_posts`
--

LOCK TABLES `wp_xyud_posts` WRITE;
/*!40000 ALTER TABLE `wp_xyud_posts` DISABLE KEYS */;
INSERT INTO `wp_xyud_posts` VALUES (9,1,'2017-07-31 21:17:17','2017-08-01 01:17:17','[et_pb_section fullwidth=\"on\" background_color=\"#1f0030\"][et_pb_fullwidth_header title=\"Divi Builder\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"36px\" content_font_color=\"rgba(255,255,255,0.85)\" max_width=\"700px\" button_one_text=\"Join Now\" button_one_url=\"Join today\" background_overlay_color=\"rgba(40,40,48,0.8)\" title_font=\"Old Standard TT|on||on|\" title_font_size=\"62px\" title_font_size_phone=\"48px\" title_font_size_last_edited=\"on|phone\" content_font=\"Raleway||||\" content_font_size=\"20px\" custom_button_one=\"on\" button_one_text_size=\"16px\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#e85929\" button_one_border_width=\"0px\" button_one_border_radius=\"2px\" button_one_letter_spacing=\"3px\" button_one_font=\"Raleway|on||on|\" button_one_use_icon=\"off\" button_one_bg_color_hover=\"rgba(232,89,41,0.85)\" button_one_letter_spacing_hover=\"2px\" custom_css_main_element=\"padding: 6% 0 12% 0;\" custom_css_header_container=\"width: 100%;\" custom_css_button_1=\"margin-top: 40px;\" background_image=\"https://cdn.elegantthemes.com/images/tour/hummus2.jpg\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" button_one_icon_placement=\"right\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_icon_placement=\"right\" button_two_letter_spacing_hover=\"0\"]Divi 3.0 introduces a completely new visual interface that will forever change how you build websites. This front end editor allows you to make changes to your website...on your actual website![/et_pb_fullwidth_header][/et_pb_section][et_pb_section background_color=\"#efefe8\" custom_css_main_element=\"z-index: 999;\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" custom_margin=\"-100px||60px|\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" bg_img_1=\"https://cdn.elegantthemes.com/images/tour/limes.jpg\" bg_img_2=\"https://cdn.elegantthemes.com/images/tour/springrolls.jpg\" bg_img_3=\"https://cdn.elegantthemes.com/images/tour/eggs.jpg\" bg_img_4=\"https://cdn.elegantthemes.com/images/tour/lemons.jpg\" background_position_1=\"bottom_center\" background_position_2=\"bottom_center\" background_position_3=\"bottom_center\" background_position_4=\"bottom_center\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_repeat_3=\"no-repeat\" background_repeat_4=\"no-repeat\" custom_css_main_element=\"overflow: visible !important;||-webkit-box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);||-moz-box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);||box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Click & type\" use_icon=\"on\" font_icon=\"%%119%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Drag & Drop\" use_icon=\"on\" font_icon=\"%%372%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e4e4e4\" background_color_gradient_end=\"rgba(228,228,228,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Fully Customize\" use_icon=\"on\" font_icon=\"%%70%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#efefef\" background_color_gradient_end=\"rgba(239,239,239,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Clone & Delete\" use_icon=\"on\" font_icon=\"%%100%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d7d9d9\" background_color_gradient_end=\"rgba(215,217,217,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" custom_padding=\"0px|||\" background_color=\"#efefe8\"][et_pb_row custom_margin=\"|||\" padding_top_1=\"10%\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_blurb title=\"So simple!\" animation=\"off\" text_orientation=\"right\" header_font=\"Raleway|on||on|\" header_font_size=\"36px\" header_text_color=\"#3a3e59\" custom_css_main_element=\"max-width: none;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sed odio non blandit. Ut varius purus eget erat ornare facilisis. Mauris pharetra lacus nec sapien iaculis, sit amet ullamcorper sapien finibus.[/et_pb_blurb][et_pb_button button_text=\"Learn more\" button_alignment=\"right\" background_layout=\"dark\" disabled_on=\"on|on|\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#e85929\" button_border_width=\"0px\" button_border_radius=\"3px\" button_letter_spacing=\"3px\" button_font=\"Raleway|on||on|\" button_use_icon=\"off\" button_bg_color_hover=\"#e84712\" button_letter_spacing_hover=\"2px\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://cdn.elegantthemes.com/images/tour/jar.jpg\" align=\"center\" max_width=\"510px\" /][/et_pb_column][/et_pb_row][et_pb_row custom_margin=\"|||\" make_equal=\"on\" padding_top_2=\"14%\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://cdn.elegantthemes.com/images/tour/cake.jpg\" animation=\"right\" align=\"center\" max_width=\"510px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb title=\"So sweet!\" animation=\"off\" header_font=\"Raleway|on||on|\" header_font_size=\"36px\" header_text_color=\"#3a3e59\" custom_css_main_element=\"max-width: none;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sed odio non blandit. Ut varius purus eget erat ornare facilisis. Mauris pharetra lacus nec sapien iaculis, sit amet ullamcorper sapien finibus.[/et_pb_blurb][et_pb_button button_text=\"Learn more\" button_alignment=\"left\" background_layout=\"dark\" disabled_on=\"on|on|\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#e85929\" button_border_width=\"0px\" button_border_radius=\"2px\" button_letter_spacing=\"3px\" button_font=\"Raleway|on||on|\" button_use_icon=\"off\" button_bg_color_hover=\"#e84712\" button_letter_spacing_hover=\"2px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#212127\" custom_padding=\"|||\" fullwidth=\"on\"][et_pb_fullwidth_header title=\"Perfectly Diverse\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"36px\" content_font_color=\"rgba(255,255,255,0.72)\" button_one_text=\"Download\" background_overlay_color=\"rgba(255,255,255,0)\" title_font=\"Old Standard TT|on||on|\" title_font_size=\"62px\" title_font_size_tablet=\"62px\" title_font_size_phone=\"48px\" title_font_size_last_edited=\"on|phone\" content_font=\"Raleway||||\" content_font_size=\"20px\" content_text_color=\"#ffffff\" custom_button_one=\"on\" button_one_text_size=\"16px\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#e85929\" button_one_border_width=\"0px\" button_one_border_radius=\"2px\" button_one_letter_spacing=\"3px\" button_one_font=\"Raleway|on||on|\" button_one_use_icon=\"off\" button_one_bg_color_hover=\"rgba(232,89,41,0.85)\" button_one_letter_spacing_hover=\"2px\" custom_css_main_element=\"padding: 6% 0;\" custom_css_header_container=\"width: 100%;\" custom_css_button_1=\"margin-top: 40px;\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vel mollis eros. Vestibulum in blandit massa. Nunc lorem lacus, lacinia ut lobortis id, tempor a sem. Vivamus rhoncus imperdiet quam quis vestibulum. Sed at dui orci. </p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_image src=\"https://cdn.elegantthemes.com/images/tour/cheese.jpg\" animation=\"off\" /][/et_pb_section]','Divi Builder Demo','','publish','closed','closed','','divi-builder-demo','','','2017-07-31 21:17:17','2017-08-01 01:17:17','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/divi-builder-demo/',0,'et_pb_layout','',0),(10,1,'2017-07-31 21:17:17','2017-08-01 01:17:17','[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Basic','','publish','closed','closed','','homepage-basic','','','2017-07-31 21:17:17','2017-08-01 01:17:17','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/homepage-basic/',0,'et_pb_layout','',0),(11,1,'2017-07-31 21:17:17','2017-08-01 01:17:17','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Recent Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h1>What Our Customers are Saying</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Shop','','publish','closed','closed','','homepage-shop','','','2017-07-31 21:17:17','2017-08-01 01:17:17','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/homepage-shop/',0,'et_pb_layout','',0),(12,1,'2017-07-31 21:17:17','2017-08-01 01:17:17','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Portfolio','','publish','closed','closed','','homepage-portfolio','','','2017-07-31 21:17:17','2017-08-01 01:17:17','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/homepage-portfolio/',0,'et_pb_layout','',0),(13,1,'2017-07-31 21:17:17','2017-08-01 01:17:17','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"https://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Company','','publish','closed','closed','','homepage-company','','','2017-07-31 21:17:17','2017-08-01 01:17:17','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/homepage-company/',0,'et_pb_layout','',0),(14,1,'2017-07-31 21:17:18','2017-08-01 01:17:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"https://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\n\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Corporate','','publish','closed','closed','','homepage-corporate','','','2017-07-31 21:17:18','2017-08-01 01:17:18','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/homepage-corporate/',0,'et_pb_layout','',0),(15,1,'2017-07-31 21:17:18','2017-08-01 01:17:18','[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"https://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Extended','','publish','closed','closed','','homepage-extended','','','2017-07-31 21:17:18','2017-08-01 01:17:18','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/homepage-extended/',0,'et_pb_layout','',0),(16,1,'2017-07-31 21:17:18','2017-08-01 01:17:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Page Fullwidth','','publish','closed','closed','','page-fullwidth','','','2017-07-31 21:17:18','2017-08-01 01:17:18','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/page-fullwidth/',0,'et_pb_layout','',0),(17,1,'2017-07-31 21:17:18','2017-08-01 01:17:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Right Sidebar','','publish','closed','closed','','page-right-sidebar','','','2017-07-31 21:17:18','2017-08-01 01:17:18','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/page-right-sidebar/',0,'et_pb_layout','',0),(18,1,'2017-07-31 21:17:18','2017-08-01 01:17:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Page Left Sidebar','','publish','closed','closed','','page-left-sidebar','','','2017-07-31 21:17:18','2017-08-01 01:17:18','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/page-left-sidebar/',0,'et_pb_layout','',0),(19,1,'2017-07-31 21:17:18','2017-08-01 01:17:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Dual Sidebars','','publish','closed','closed','','page-dual-sidebars','','','2017-07-31 21:17:18','2017-08-01 01:17:18','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/page-dual-sidebars/',0,'et_pb_layout','',0),(20,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Grid','','publish','closed','closed','','portfolio-grid','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-grid/',0,'et_pb_layout','',0),(21,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send me an inquiry and I will get back to you as soon as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio 1 Column','','publish','closed','closed','','portfolio-1-column','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-1-column/',0,'et_pb_layout','',0),(22,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Carousel','','publish','closed','closed','','portfolio-fullwidth-carousel','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-fullwidth-carousel/',0,'et_pb_layout','',0),(23,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Grid','','publish','closed','closed','','portfolio-fullwidth-grid','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-fullwidth-grid/',0,'et_pb_layout','',0),(24,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended','','publish','closed','closed','','project-extended','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/project-extended/',0,'et_pb_layout','',0),(25,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Details</h4>\n<strong>Client </strong>Client Name\n<strong>Date </strong>Date of Completion\n<strong>Skills </strong>Branding, Web Design\n<strong>View </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended 2','','publish','closed','closed','','project-extended-2','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/project-extended-2/',0,'et_pb_layout','',0),(26,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Blog Masonry','','publish','closed','closed','','blog-masonry','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/blog-masonry/',0,'et_pb_layout','',0),(27,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Blog Standard','','publish','closed','closed','','blog-standard','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/blog-standard/',0,'et_pb_layout','',0),(28,1,'2017-07-31 21:17:19','2017-08-01 01:17:19','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Basic','','publish','closed','closed','','shop-basic','','','2017-07-31 21:17:19','2017-08-01 01:17:19','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/shop-basic/',0,'et_pb_layout','',0),(29,1,'2017-07-31 21:17:20','2017-08-01 01:17:20','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintage products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintage products are 50% off! Don’t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Extended','','publish','closed','closed','','shop-extended','','','2017-07-31 21:17:20','2017-08-01 01:17:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/shop-extended/',0,'et_pb_layout','',0),(30,1,'2017-07-31 21:17:20','2017-08-01 01:17:20','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Splash Page','','publish','closed','closed','','splash-page','','','2017-07-31 21:17:20','2017-08-01 01:17:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/splash-page/',0,'et_pb_layout','',0),(31,1,'2017-07-31 21:17:20','2017-08-01 01:17:20','[et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Maintenance Mode','','publish','closed','closed','','maintenance-mode','','','2017-07-31 21:17:20','2017-08-01 01:17:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/maintenance-mode/',0,'et_pb_layout','',0),(32,1,'2017-07-31 21:17:20','2017-08-01 01:17:20','[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Coming Soon','','publish','closed','closed','','coming-soon','','','2017-07-31 21:17:20','2017-08-01 01:17:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/coming-soon/',0,'et_pb_layout','',0),(33,1,'2017-07-31 21:17:20','2017-08-01 01:17:20','[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Landing Page','','publish','closed','closed','','landing-page','','','2017-07-31 21:17:20','2017-08-01 01:17:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/landing-page/',0,'et_pb_layout','',0),(34,1,'2017-07-31 21:17:20','2017-08-01 01:17:20','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]','About Me','','publish','closed','closed','','about-me','','','2017-07-31 21:17:20','2017-08-01 01:17:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/about-me/',0,'et_pb_layout','',0),(35,1,'2017-07-31 21:17:20','2017-08-01 01:17:20','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','publish','closed','closed','','about-us','','','2017-07-31 21:17:20','2017-08-01 01:17:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/about-us/',0,'et_pb_layout','',0),(36,1,'2017-07-31 21:17:21','2017-08-01 01:17:21','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\n\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\nSan Francisco, California 65432\n\n<strong>Phone:</strong> 123.4567.890\n\n<strong>Business Hours:</strong> 8a-6:30p M-F, 9a-2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','publish','closed','closed','','contact-us','','','2017-07-31 21:17:21','2017-08-01 01:17:21','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/contact-us/',0,'et_pb_layout','',0),(37,1,'2017-07-31 21:17:21','2017-08-01 01:17:21','[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\n[et_pb_text]\n<h2>Nick Roach</h2>\n<em>President, CEO, Theme UI/UX Designer</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\n[et_pb_text]\n<h2>Kenny Sing</h2>\n<em>Lead Graphic Designers</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\n[et_pb_text]\n<h2>Mitch Skolnik</h2>\n<em>Community Manager</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_5.png\"  title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_6.png\"  title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_7.png\"  title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_8.png\"  title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Our Team','','publish','closed','closed','','our-team','','','2017-07-31 21:17:21','2017-08-01 01:17:21','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/our-team/',0,'et_pb_layout','',0),(38,1,'2017-07-31 21:17:21','2017-08-01 01:17:21','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"https://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Creative Agency','','publish','closed','closed','','creative-agency','','','2017-07-31 21:17:21','2017-08-01 01:17:21','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/creative-agency/',0,'et_pb_layout','',0),(39,1,'2017-07-31 21:17:21','2017-08-01 01:17:21','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n-Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\nDon\'t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Sales Page','','publish','closed','closed','','sales-page','','','2017-07-31 21:17:21','2017-08-01 01:17:21','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/sales-page/',0,'et_pb_layout','',0),(40,1,'2017-07-31 21:17:21','2017-08-01 01:17:21','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]','Case Study','','publish','closed','closed','','case-study','','','2017-07-31 21:17:21','2017-08-01 01:17:21','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/case-study/',0,'et_pb_layout','',0),(41,1,'2017-07-31 21:17:21','2017-08-01 01:17:21','[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"https://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\n<h1>Fully Responsive Layouts</h1>\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Product Features','','publish','closed','closed','','product-features','','','2017-07-31 21:17:21','2017-08-01 01:17:21','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/product-features/',0,'et_pb_layout','',0),(42,1,'2017-07-31 21:29:05','2017-08-01 01:29:05','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.69\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff; font-family: quicksandlight;\"><span style=\"font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW <span style=\"color: #8bc34a; font-size: 32pt;\">»</span></strong></span></span></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2017-08-21 06:48:38','2017-08-21 10:48:38','',0,'http://copyvet.globat.com/wordpress/?page_id=42',0,'page','',0),(43,1,'2017-07-31 21:29:05','2017-08-01 01:29:05','','Home','','inherit','closed','closed','','42-revision-v1','','','2017-07-31 21:29:05','2017-08-01 01:29:05','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(44,1,'2017-07-31 21:32:31','2017-08-01 01:32:31','','Brand Stories','','publish','closed','closed','','brand-stories','','','2017-09-11 23:53:11','2017-09-12 03:53:11','',0,'http://copyvet.globat.com/wordpress/?page_id=44',0,'page','',0),(45,1,'2017-07-31 21:32:31','2017-08-01 01:32:31','','Brand Stories','','inherit','closed','closed','','44-revision-v1','','','2017-07-31 21:32:31','2017-08-01 01:32:31','',44,'http://copyvet.globat.com/wordpress/44-revision-v1/',0,'revision','',0),(46,1,'2017-07-31 21:33:43','2017-08-01 01:33:43','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\" text_font_size=\"18px\" text_line_height=\"1.4em\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Phone &amp; Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_phone=\"||1%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"17px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Highlights</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li style=\"margin-left: 15px;\">Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li style=\"margin-left: 15px;\">Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">July 2010–Present</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li style=\"margin-left: 15px;\">Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li style=\"margin-left: 15px;\">Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li style=\"margin-left: 15px;\">Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li style=\"margin-left: 15px;\">Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li style=\"margin-left: 15px;\">Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">April 2010–July 2010</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li style=\"margin-left: 15px;\">Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">April 2005–April 2010</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li style=\"margin-left: 15px;\">Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\r\n 	<li style=\"margin-left: 15px;\">Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\r\n 	<li style=\"margin-left: 15px;\">Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li style=\"margin-left: 15px;\">dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\r\n 	<li style=\"margin-left: 15px;\">MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li style=\"margin-left: 15px;\">Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\r\n 	<li style=\"margin-left: 15px;\">Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">June 1996–July 2001</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">1989</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Awards</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','publish','closed','closed','','my-resume','','','2017-09-11 23:53:12','2017-09-12 03:53:12','',0,'http://copyvet.globat.com/wordpress/?page_id=46',0,'page','',0),(47,1,'2017-07-31 21:33:43','2017-08-01 01:33:43','','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-07-31 21:33:43','2017-08-01 01:33:43','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(48,1,'2017-07-31 21:34:06','2017-08-01 01:34:06','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.69\" text_font=\"Open Sans Light||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"17px\"]<p>&nbsp;</p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I&rsquo;ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work&nbsp;</span><span style=\"font-size: 14pt;\">&raquo;</span></a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','publish','closed','closed','','about-me','','','2017-09-11 23:53:11','2017-09-12 03:53:11','',0,'http://copyvet.globat.com/wordpress/?page_id=48',0,'page','',0),(49,1,'2017-07-31 21:34:06','2017-08-01 01:34:06','','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-07-31 21:34:06','2017-08-01 01:34:06','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(50,1,'2017-07-31 21:35:52','2017-08-01 01:35:52','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|29px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"45px\" text_font_size_phone=\"30px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_line_height_last_edited=\"on|phone\"]<p><span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat||||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff; font-family: quicksandreg;\">EMAIL</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text admin_label=\"Phone\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" admin_label=\"Message Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans|on|||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','publish','closed','closed','','contact-me','','','2017-09-11 23:53:12','2017-09-12 03:53:12','',0,'http://copyvet.globat.com/wordpress/?page_id=50',0,'page','',0),(51,1,'2017-07-31 21:35:52','2017-08-01 01:35:52','','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-07-31 21:35:52','2017-08-01 01:35:52','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(52,1,'2017-07-31 21:42:00','2017-08-01 01:42:00','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','publish','closed','closed','','portfolio-page-1','','','2017-09-11 23:53:12','2017-09-12 03:53:12','',44,'http://copyvet.globat.com/wordpress/?page_id=52',0,'page','',0),(53,1,'2017-07-31 21:42:00','2017-08-01 01:42:00','','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-07-31 21:42:00','2017-08-01 01:42:00','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(54,1,'2017-07-31 21:46:59','2017-08-01 01:46:59','','TELL ME A STORY','','publish','closed','closed','','54','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',0,'http://copyvet.globat.com/wordpress/?p=54',12,'nav_menu_item','',0),(55,1,'2017-07-31 21:46:59','2017-08-01 01:46:59','','MY STORY','','publish','closed','closed','','55','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',0,'http://copyvet.globat.com/wordpress/?p=55',11,'nav_menu_item','',0),(56,1,'2017-07-31 21:46:58','2017-08-01 01:46:58','','MY RESUME','','publish','closed','closed','','56','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',0,'http://copyvet.globat.com/wordpress/?p=56',10,'nav_menu_item','',0),(57,1,'2017-07-31 21:46:58','2017-08-01 01:46:58','','BRAND STORIES','','publish','closed','closed','','57','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',0,'http://copyvet.globat.com/wordpress/?p=57',2,'nav_menu_item','',0),(58,1,'2017-07-31 21:46:58','2017-08-01 01:46:58','','HOME','','publish','closed','closed','','58','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',0,'http://copyvet.globat.com/wordpress/?p=58',1,'nav_menu_item','',0),(59,1,'2017-07-31 21:46:58','2017-08-01 01:46:58',' ','','','publish','closed','closed','','59','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',44,'http://copyvet.globat.com/wordpress/?p=59',3,'nav_menu_item','',0),(64,1,'2017-08-01 12:51:11','2017-08-01 16:51:11','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n<h1></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 12:51:11','2017-08-01 16:51:11','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(66,1,'2017-08-01 13:23:28','2017-08-01 17:23:28','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.65\" background_color=\"#eceff1\" admin_label=\"Homepage Content Area\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" admin_label=\"Homepage Headline \"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n<h1></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 13:23:28','2017-08-01 17:23:28','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(68,1,'2017-08-01 13:26:07','2017-08-01 17:26:07','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\" background_color=\"#eceff1\"][et_pb_row admin_label=\"Homepage Headline \" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"> Let me tell you a few stories about some brands I know</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 13:26:07','2017-08-01 17:26:07','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(70,1,'2017-08-01 13:50:12','2017-08-01 17:50:12','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\" custom_padding=\"54px|0px|106px|0px\"][et_pb_row admin_label=\"Homepage Headline \" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding_phone=\"100px||100px|\" custom_padding=\"300px||300px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" header_font=\"Reenie Beanie||||\" header_font_size=\"45px\" header_text_color=\"#212121\"]<h1 style=\"text-align: center;\">&nbsp;<span style=\"color: #212121;\">Let me tell you a few stories about some brands I know</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 13:50:12','2017-08-01 17:50:12','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(71,1,'2017-08-01 13:51:39','2017-08-01 17:51:39','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#eceff1\" _builder_version=\"3.0.65\" custom_padding=\"54px|0px|106px|0px\"][et_pb_row admin_label=\"Homepage Headline \" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding_phone=\"100px||100px|\" custom_padding=\"300px||300px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" header_font=\"Reenie Beanie||||\" header_font_size=\"45px\" header_text_color=\"#212121\"]\r\n<h1 style=\"text-align: center;\"> <span style=\"color: #212121;\">Let me tell you a few stories about some brands I know</span></h1>\r\n[/et_pb_text][et_pb_post_nav _builder_version=\"3.0.65\" in_same_term=\"off\" hide_prev=\"on\" hide_next=\"off\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 13:51:39','2017-08-01 17:51:39','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(73,1,'2017-08-01 13:58:40','2017-08-01 17:58:40','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#eceff1\" _builder_version=\"3.0.65\" custom_padding=\"54px|0px|106px|0px\"][et_pb_row admin_label=\"Homepage Headline \" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding_phone=\"100px||100px|\" custom_padding=\"300px||300px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" header_font=\"Reenie Beanie||||\" header_font_size=\"45px\" header_text_color=\"#212121\"]\r\n<h1 style=\"text-align: center;\"> <span style=\"color: #212121;\">Let me tell you a few stories about some brands I know</span></h1>\r\n[/et_pb_text][et_pb_button _builder_version=\"3.0.65\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_bg_color=\"#eceff1\" button_border_width=\"0\" button_border_radius=\"0\" button_letter_spacing=\"0\" button_use_icon=\"on\" button_icon=\"%%20%%\" button_icon_color=\"#212121\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#1a237e\" button_border_color_hover=\"#000000\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 13:58:40','2017-08-01 17:58:40','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(75,1,'2017-08-01 14:08:08','2017-08-01 18:08:08','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#eceff1\" _builder_version=\"3.0.65\" custom_padding=\"54px|0px|106px|0px\"][et_pb_row admin_label=\"Homepage Headline \" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding_phone=\"100px||100px|\" custom_padding=\"300px||300px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" header_font=\"Reenie Beanie||||\" header_font_size=\"45px\" header_text_color=\"#212121\"]\r\n<h1 style=\"text-align: center;\"> <span style=\"color: #212121;\">Let me tell you a few stories about some brands I know</span></h1>\r\n[/et_pb_text][et_pb_cta _builder_version=\"3.0.65\" button_text=\"x\" url_new_window=\"off\" use_background_color=\"on\" background_layout=\"light\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#eceff1\" button_letter_spacing=\"0\" button_use_icon=\"on\" button_icon=\"%%20%%\" button_icon_color=\"#212121\" button_icon_placement=\"right\" button_text_color_hover=\"#eceff1\" button_bg_color_hover=\"#eceff1\" button_letter_spacing_hover=\"0\" button_text_size=\"1\" button_border_width=\"4\" button_border_radius=\"1\" button_on_hover=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 14:08:08','2017-08-01 18:08:08','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(77,1,'2017-08-01 14:13:40','2017-08-01 18:13:40','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"54px|0px|106px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"100px||100px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]<h1 style=\"text-align: center;\">&nbsp; &nbsp;<span style=\"color: #212121;\">Let me tell you a few stories about some brands I know <span style=\"font-family: \'Source Sans Pro\'; font-weight: normal;\">&gt;</span></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 14:13:40','2017-08-01 18:13:40','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(79,1,'2017-08-01 14:22:51','2017-08-01 18:22:51','[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-01 14:22:51','2017-08-01 18:22:51','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(86,1,'2017-08-01 20:43:13','2017-08-02 00:43:13','','Screen Shot 2016-10-14 at 6.11.36 PM','','inherit','open','closed','','screen-shot-2016-10-14-at-6-11-36-pm','','','2017-08-01 20:43:13','2017-08-02 00:43:13','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png',0,'attachment','image/png',0),(87,1,'2017-08-01 20:54:35','2017-08-02 00:54:35','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.65\" background_color=\"rgba(0,0,0,0)\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" custom_padding=\"350px|0px|350px|0px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c0000\" background_color_gradient_end=\"#ffffff\" background_color_gradient_type=\"radial\" background_color_gradient_end_position=\"40%\"][et_pb_row background_color=\"rgba(0,0,0,0)\" background_color_1=\"rgba(0,0,0,0)\" _builder_version=\"3.0.65\" use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.65\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" background_layout=\"light\" header_font_size=\"36px\" header_text_color=\"#212121\" custom_button=\"on\" button_bg_color=\"#ffffff\" button_use_icon=\"off\" button_text_color=\"#212121\" button_text_size=\"18px\" button_text_color_hover=\"#1a237e\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" button_border_radius=\"4px\" button_border_width=\"1px\" button_border_color=\"#263238\" button_font=\"Source Sans Pro||||\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"22px\" text_font=\"Source Sans Pro|on|||\" text_line_height=\"0px\"]<p>Sun Chemical Branding</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\"]<p>Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that&mdash;in fact, most people don\'t.) We updated their brand to spread the word.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-01 20:54:35','2017-08-02 00:54:35','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(89,1,'2017-08-01 21:08:17','2017-08-02 01:08:17','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"54px|0px|106px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"100px||100px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]\r\n<h1 style=\"text-align: center;\">   <span style=\"color: #212121;\">Let me tell you a few stories about some brands I know <span style=\"font-family: \'Source Sans Pro\'; font-weight: normal;\">&gt;</span></span></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-01 21:08:17','2017-08-02 01:08:17','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(90,1,'2017-08-01 21:21:43','2017-08-02 01:21:43','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.65\" background_color=\"rgba(0,0,0,0)\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" custom_padding=\"350px|0px|350px|0px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c0000\" background_color_gradient_end=\"#ffffff\" background_color_gradient_type=\"radial\" background_color_gradient_end_position=\"40%\"][et_pb_row background_color=\"#000000\" _builder_version=\"3.0.65\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" _builder_version=\"3.0.65\" background_layout=\"light\" header_font_size=\"36px\" header_text_color=\"#212121\" custom_button=\"on\" button_bg_color=\"#ffffff\" button_use_icon=\"off\" button_text_color=\"#212121\" button_text_size=\"18px\" button_text_color_hover=\"#1a237e\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" button_border_radius=\"4px\" button_border_width=\"1px\" button_border_color=\"#263238\" button_font=\"Source Sans Pro||||\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"Hero Image\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hero Headline\" _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Sun Chemical</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"22px\" text_font=\"Source Sans Pro|on|||\" text_line_height=\"0px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-01 21:21:43','2017-08-02 01:21:43','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(91,1,'2017-08-01 21:22:42','2017-08-02 01:22:42','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.65\" background_color=\"rgba(0,0,0,0)\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" custom_padding=\"350px|0px|350px|0px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c0000\" background_color_gradient_end=\"#ffffff\" background_color_gradient_type=\"radial\" background_color_gradient_end_position=\"40%\"][et_pb_row background_color=\"#000000\" _builder_version=\"3.0.65\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" _builder_version=\"3.0.65\" background_layout=\"light\" header_font_size=\"36px\" header_text_color=\"#212121\" custom_button=\"on\" button_bg_color=\"#ffffff\" button_use_icon=\"off\" button_text_color=\"#212121\" button_text_size=\"18px\" button_text_color_hover=\"#1a237e\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" button_border_radius=\"4px\" button_border_width=\"1px\" button_border_color=\"#263238\" button_font=\"Source Sans Pro||||\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"22px\" text_font=\"Source Sans Pro|on|||\" text_line_height=\"0px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"10px|0px|10px|0px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font_size=\"14px\" text_line_height=\"1.5em\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-01 21:22:42','2017-08-02 01:22:42','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(93,1,'2017-08-01 21:28:37','2017-08-02 01:28:37','[et_pb_section fb_built=\"1\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#0c0000\" background_color_gradient_end=\"#ffffff\" background_color_gradient_type=\"radial\" background_color_gradient_end_position=\"40%\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\"][et_pb_row custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\" use_custom_width=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" max_width=\"550px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-01 21:28:37','2017-08-02 01:28:37','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(95,1,'2017-08-01 22:01:17','2017-08-02 02:01:17','[et_pb_section fb_built=\"1\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_color=\"rgba(0,0,0,0.14)\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-01 22:01:17','2017-08-02 02:01:17','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(103,1,'2017-08-02 01:16:40','2017-08-02 05:16:40','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"54px|0px|106px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"50px||50px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]\r\n<h1 style=\"text-align: center;\">   <span style=\"color: #212121;\">Let me tell you a few stories about some brands I know <span style=\"font-family: \'Source Sans Pro\'; font-weight: normal;\">></span></span></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 01:16:40','2017-08-02 05:16:40','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(105,1,'2017-08-02 01:17:44','2017-08-02 05:17:44','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]\r\n<h1 style=\"text-align: center;\">   <span style=\"color: #212121;\">Let me tell you a few stories about some brands I know <span style=\"font-family: \'Source Sans Pro\'; font-weight: normal;\">></span></span></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 01:17:44','2017-08-02 05:17:44','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(107,1,'2017-08-02 01:18:24','2017-08-02 05:18:24','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">Let me tell you a few stories about some brands I know <span style=\"font-family: \'Source Sans Pro\'; font-weight: normal;\">&gt;</span></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 01:18:24','2017-08-02 05:18:24','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(112,1,'2017-08-02 01:33:11','2017-08-02 05:33:11','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" max_width=\"250px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" max_width=\"250px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" max_width=\"250px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" max_width=\"250px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 01:33:11','2017-08-02 05:33:11','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(114,1,'2017-08-02 01:38:15','2017-08-02 05:38:15','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" inline_fonts=\"Source Sans Pro\"]<h5><span style=\"font-family: \'Source Sans Pro\';\"><strong>Sun Chemical Branding</strong></span></h5>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 01:38:15','2017-08-02 05:38:15','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(116,1,'2017-08-02 01:39:30','2017-08-02 05:39:30','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" inline_fonts=\"Source Sans Pro\"]\r\n<h5><span style=\"font-family: \'Source Sans Pro\';\"><strong>Sun Chemical Branding</strong></span></h5>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 01:39:30','2017-08-02 05:39:30','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(118,1,'2017-08-02 01:41:27','2017-08-02 05:41:27','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" header_text_color=\"rgba(0,0,0,0)\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" inline_fonts=\"Source Sans Pro\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text max_width=\"250px\" _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 01:41:27','2017-08-02 05:41:27','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(119,1,'2017-08-02 18:27:02','2017-08-02 22:27:02','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"][/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:27:02','2017-08-02 22:27:02','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(120,1,'2017-08-02 18:28:03','2017-08-02 22:28:03','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:28:03','2017-08-02 22:28:03','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(122,1,'2017-08-02 18:32:10','2017-08-02 22:32:10','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:32:10','2017-08-02 22:32:10','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(124,1,'2017-08-02 18:38:44','2017-08-02 22:38:44','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" header_line_height_last_edited=\"on|desktop\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"26px\" body_font_size=\"14px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"12px\" body_line_height_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"16px\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:38:44','2017-08-02 22:38:44','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(126,1,'2017-08-02 18:39:30','2017-08-02 22:39:30','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" header_line_height_last_edited=\"on|desktop\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"24px\" body_font_size=\"14px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"12px\" body_line_height_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"16px\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:39:30','2017-08-02 22:39:30','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(127,1,'2017-08-02 18:40:16','2017-08-02 22:40:16','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" header_line_height_last_edited=\"on|desktop\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"26px\" body_font_size=\"14px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"12px\" body_line_height_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"16px\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:40:16','2017-08-02 22:40:16','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(129,1,'2017-08-02 18:41:19','2017-08-02 22:41:19','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" header_line_height_last_edited=\"on|desktop\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"24px\" body_font_size=\"14px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"12px\" body_line_height_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"16px\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:41:19','2017-08-02 22:41:19','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(131,1,'2017-08-02 18:49:50','2017-08-02 22:49:50','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_text_color=\"#212121\" body_font=\"Source Sans Pro||||\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" header_line_height_last_edited=\"on|desktop\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"24px\" body_font_size=\"14px\" body_font_size_last_edited=\"on|desktop\" body_font_size_phone=\"12px\" body_line_height_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"16px\" url_new_window=\"off\" use_background_color=\"on\" border_style=\"solid\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"10px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" module_id=\"portfolio_content\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:49:50','2017-08-02 22:49:50','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(133,1,'2017-08-02 18:52:19','2017-08-02 22:52:19','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"12px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text module_id=\"portfolio_content\" _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:52:19','2017-08-02 22:52:19','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(135,1,'2017-08-02 18:54:33','2017-08-02 22:54:33','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"12px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text module_id=\"portfolio_content\" _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" custom_margin=\"0px|||\" custom_padding=\"11px|||\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:54:33','2017-08-02 22:54:33','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(136,1,'2017-08-02 18:56:20','2017-08-02 22:56:20','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\" padding_top_1=\"10px\" padding_top_2=\"10px\"][et_pb_column type=\"1_4\"][et_pb_text module_id=\"portfolio_content\" _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" custom_margin=\"0px|||\" custom_padding=\"11px|||\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:56:20','2017-08-02 22:56:20','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(138,1,'2017-08-02 18:58:01','2017-08-02 22:58:01','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"22px\" padding_top_2=\"12px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"22px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text module_id=\"portfolio_content\" _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"0px|||\" custom_padding=\"11px|||\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:58:01','2017-08-02 22:58:01','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(139,1,'2017-08-02 18:59:44','2017-08-02 22:59:44','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"22px\" padding_top_2=\"12px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"portfolio_content\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 18:59:44','2017-08-02 22:59:44','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(140,1,'2017-08-02 19:01:59','2017-08-02 23:01:59','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_top_2=\"12px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"portfolio_content\" padding_bottom_1=\"10px\" padding_bottom_2=\"10px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 19:01:59','2017-08-02 23:01:59','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(142,1,'2017-08-02 19:03:43','2017-08-02 23:03:43','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.65\" background_color=\"#eceff1\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_top_2=\"12px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"portfolio_content\" padding_bottom_1=\"10px\" padding_bottom_2=\"10px\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 19:03:43','2017-08-02 23:03:43','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(144,1,'2017-08-02 19:05:51','2017-08-02 23:05:51','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">Let me tell you a few stories about some brands I know.</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:05:51','2017-08-02 23:05:51','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(146,1,'2017-08-02 19:10:41','2017-08-02 23:10:41','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">Let me tell you a few stories about some brands I know.</span></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:10:41','2017-08-02 23:10:41','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(148,1,'2017-08-02 19:13:33','2017-08-02 23:13:33','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">Let me tell you a few stories about some brands I know.</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" button_text=\"Let me tell you a few stories about some brands I know.\" button_url=\"#\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"54\" button_text_color=\"#212121\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:13:33','2017-08-02 23:13:33','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(150,1,'2017-08-02 19:19:59','2017-08-02 23:19:59','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Reenie Beanie||||\" text_font_size=\"36\" text_text_color=\"#212121\" header_font=\"Reenie Beanie||||\" header_font_size=\"48px\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Source Sans Pro\"]\r\n<h1 style=\"text-align: center;\"><span style=\"color: #212121;\">Let me tell you a few stories about some brands I know.</span></h1>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know.\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Reenie Beanie||||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%20%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:19:59','2017-08-02 23:19:59','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(151,1,'2017-08-02 19:20:17','2017-08-02 23:20:17','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know.\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Reenie Beanie||||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%20%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:20:17','2017-08-02 23:20:17','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(153,1,'2017-08-02 19:23:58','2017-08-02 23:23:58','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Reenie Beanie||||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%24%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:23:58','2017-08-02 23:23:58','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(154,1,'2017-08-02 19:25:32','2017-08-02 23:25:32','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Reenie Beanie||||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%24%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"18px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:25:32','2017-08-02 23:25:32','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(156,1,'2017-08-02 19:26:16','2017-08-02 23:26:16','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Reenie Beanie||||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%24%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"28px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:26:16','2017-08-02 23:26:16','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(158,1,'2017-08-02 19:26:57','2017-08-02 23:26:57','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Reenie Beanie||||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%24%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"30px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:26:57','2017-08-02 23:26:57','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(160,1,'2017-08-02 19:27:48','2017-08-02 23:27:48','[et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Reenie Beanie||||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%24%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"32px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-02 19:27:48','2017-08-02 23:27:48','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(164,1,'2017-08-02 20:37:50','2017-08-03 00:37:50','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Source Sans Pro||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" header_text_color=\"#212121\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_text_color=\"#616161\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-02 20:37:50','2017-08-03 00:37:50','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(166,1,'2017-08-02 20:47:21','2017-08-03 00:47:21','','02','','inherit','open','closed','','02','','','2017-08-02 20:47:21','2017-08-03 00:47:21','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/02.png',0,'attachment','image/png',0),(167,1,'2017-08-02 20:47:21','2017-08-03 00:47:21','','03','','inherit','open','closed','','03','','','2017-08-02 20:47:21','2017-08-03 00:47:21','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/03.png',0,'attachment','image/png',0),(25042,1,'2016-06-13 14:35:36','2016-06-13 12:35:36','<p>[et_pb_section admin_label=\"section\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/054.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"150px||150px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"72\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size_phone=\"42\" text_font_size_last_edited=\"on|phone\"]</p><p class=\"p1\"><span class=\"s1\">Get in touch with us.</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"#ffffff\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"on\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" gutter_width=\"4\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"36\" text_text_color=\"#202020\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" max_width=\"480px\"]</p><p class=\"p1\"><span class=\"s1\">Have a project or an idea you’d like to collaborate with Hub? Please get in touch!</span></p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" custom_padding=\"40px|||\" padding_mobile=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_letter_spacing=\"1\" custom_margin=\"||0px|\"]</p><p>EMAIL</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"20\" text_text_color=\"#7a7a7a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px|||\"]</p><p><span style=\"text-decoration: underline;\">email@hub.com</span></p><p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_letter_spacing=\"1\" custom_margin=\"||0px|\"]</p><p>OFFICE</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||on||\" text_font_size=\"20\" text_text_color=\"#7a7a7a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px|||\" text_line_height=\"1.5em\"]</p><p>55 East 52nd Street 21st Floor New York, NY 122.<br /> Tel: +2120 370 00 01</p><p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"0\" title_font=\"Montserrat|on|||\" title_font_size=\"14\" title_text_color=\"#aaaaaa\" form_field_font=\"Montserrat|on|||\" form_field_text_color=\"#aaaaaa\" form_field_letter_spacing=\"1px\" use_border_color=\"on\" border_color=\"#d4d4d4\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#202020\" button_border_width=\"12\" button_border_color=\"#202020\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_bg_color_hover=\"#202020\" button_border_color_hover=\"#202020\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_text_size=\"16\"] [et_pb_contact_field field_title=\"NAME\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field][et_pb_contact_field field_title=\"EMAIL\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field][et_pb_contact_field field_title=\"MESSAGE\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"17\" mouse_wheel=\"off\" address=\"SoMa, San Francisco, California, Stati Uniti\" address_lat=\"37.7785189\" address_lng=\"-122.4056395\"] [et_pb_map_pin title=\"Office\" pin_address=\"SoMa, San Francisco, California, Stati Uniti\" pin_address_lat=\"37.7785189\" pin_address_lng=\"-122.4056395\"] [/et_pb_map_pin] [/et_pb_fullwidth_map][/et_pb_section]</p>','Contact Page #4','','publish','closed','closed','','contact-page-4-2','','','2016-06-13 14:35:36','2016-06-13 12:35:36','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/contact-page-4-2/',0,'et_pb_layout','',0),(25569,1,'2016-07-06 18:06:17','2016-07-06 16:06:17','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"on\" parallax_method_1=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"rgba(0,0,0,0)\" padding_2_last_edited=\"on|desktop\" background_color_1=\"#ea1d63\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\"]\n\n<img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02-01.png\" alt=\"02-01\" width=\"72\" height=\"126\">Microphone\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.\nSed nunc orci, ultriciescongue vehicula.\nIn aliquet facilisis condime.</p>\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Alarm Clock\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\"]\n\n<img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/01-02.png\" alt=\"02-01\">Microphone\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.\nSed nunc orci, ultriciescongue vehicula.\nIn aliquet facilisis condime.</p>\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Feature','','publish','closed','closed','','feature','','','2016-07-06 18:06:17','2016-07-06 16:06:17','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/feature/',0,'et_pb_layout','',0),(25579,1,'2016-07-06 18:09:45','2016-07-06 16:09:45','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/013-2.jpg\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"on\" parallax_method_1=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"#ea1d63\" padding_top_2=\"11%\" padding_right_2=\"9%\" padding_bottom_2=\"11%\" padding_left_2=\"9%\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" bg_img_1=\"http://localhost:8888/wp-content/uploads/2016/07/013-1.jpg\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#cdcece\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25%||2%|\" text_font_size=\"24\" text_font=\"Roboto||||\"]\n\nBeginner\'s Guide\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"72\" text_font=\"Roboto|on|||\" text_font_size_tablet=\"52\" text_line_height=\"1.1em\"]\n\nA Swim in\nThe Ocean\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||25%|\" text_font_size=\"52\" text_font=\"Roboto||||\"]\n\n<img class=\"alignnone size-full wp-image-5398\" style=\"margin-top: 32px; margin-bottom:15px;\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/thumb.png\" alt=\"thumb\" width=\"60\" height=\"60\">\n<h3><span style=\"color: #ffffff\">Rick F.</span></h3>\n<h5><span style=\"color: #cdcece\">Designer at Ciao</span></h5>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|phone\" custom_margin_last_edited=\"on|desktop\" custom_margin_tablet=\"15%|10%||\" custom_css_main_element=\"font-weight: 500;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|phone\"]\n\nOpen Water Swimming\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"500px\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight:400;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|phone\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nLorem ipsum dolor sit amet, consect elit. Phasellus ac magna non augue port titor scelerisque ac id diam. Mauris elit velit, lobortis sed interdum at.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"440px\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight:300;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nProin ut quam eros. Donec sed lobortis diam. Nulla nec odio lacus. Quisque porttitor egestas dolor in placerat. Nunc vehicula dapibus ipsum. Duis venena tis risus non nunc ferme ntum dapibus. Morbi lorem ante, male suada in mollis nec, auctor nec massa. Aenean tempus dui eget felis blandit at fringilla urna ultrices. Suspendisse feugiat.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"8%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight: 500;\" custom_padding=\"||60px|\" custom_margin_tablet=\"4%|||\" custom_margin_phone=\"10%|||\"]\n\n<span style=\"text-decoration: underline\"><a style=\"color: #ffffff;text-decoration: underline\" href=\"#\">READ MORE</a></span>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Blog Post #1','','publish','closed','closed','','blog-post-1-3','','','2016-07-06 18:09:45','2016-07-06 16:09:45','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/blog-post-1-3/',0,'et_pb_layout','',0),(25580,1,'2016-07-06 18:09:51','2016-07-06 16:09:51','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03-2.jpg\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"#ea1d63\" padding_top_2=\"7.5%\" padding_right_2=\"9%\" padding_left_2=\"9%\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"32\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#d4d4d4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25%||4%|8%\" text_font=\"Roboto||||\" text_font_size_phone=\"28\"]\n\nArticle\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"72\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||4%|8%\" custom_css_main_element=\"font-weight:500;\" text_font=\"Roboto||||\" text_line_height=\"1em\" text_font_size_tablet=\"52\"]\n\nHow to Wash\na Dress Shirt\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_text_color=\"#b7b7b8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20%|8%\" custom_css_main_element=\"font-weight:500;\" text_font=\"Roboto|on|||\" text_line_height=\"1.1em\" text_font_size=\"13\"]\n\nSHARE THIS:\n<p><a href=\" #\"><img style=\"margin-right:2%\" class=\"alignnone size-medium wp-image-5543\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/01-fb.png\" alt=\"01-fb\" width=\"9\" height=\"18\"> </a>     <a href=\"#\"><img class=\"alignnone size-medium wp-image-5544\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02-twitter.png\" alt=\"02-twitter\" width=\"23\" height=\"18\"></a></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"500px\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|phone\" custom_margin_last_edited=\"on|desktop\" custom_margin_tablet=\"15%|10%||\" custom_css_main_element=\"font-weight: 500;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\"]\n\nTips On Washing\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"500px\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight:400;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|phone\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nLorem ipsum dolor sit amet, consect elit. Phasellus ac magna non augue port titor scelerisque ac id diam. Mauris elit velit, lobortis sed interdum at.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"440px\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight:300;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nProin ut quam eros. Donec sed lobortis diam. Nulla nec odio lacus. Quisque porttitor egestas dolor in placerat. Nunc vehicula dapibus ipsum. Duis venena tis risus non nunc ferme ntum dapibus. Morbi lorem ante, male suada in mollis nec, auctor nec massa. Aenean tempus dui eget felis blandit at fringilla urna ultrices. Suspendisse feugiat.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"8%||20%|\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight: 500;\" custom_margin_tablet=\"6%||20%|\" custom_margin_phone=\"10%||20%|\"]\n\n<span style=\"text-decoration: underline\"><a style=\"color: #ffffff;text-decoration: underline\" href=\"#\">READ MORE</a></span>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Blog Post #2','','publish','closed','closed','','blog-post-2-3','','','2016-07-06 18:09:51','2016-07-06 16:09:51','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/blog-post-2-3/',0,'et_pb_layout','',0),(25581,1,'2016-07-06 18:09:59','2016-07-06 16:09:59','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"#111314\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" background_color_1=\"#ea1d63\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Basic Plan\" title=\"Basic\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_text_color=\"#ffffff\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"24%||24%|\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"on\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"height: 100%||font-weight:300;\" custom_css_promo_description=\"font-weight:300;||\" custom_css_promo_button=\"margin-top:9px;||width:168px;||padding-top:18px;||padding-bottom:18px;\" custom_css_promo_title=\"margin-bottom:20px;\" header_font=\"Roboto||||\" header_font_size=\"64\" body_font=\"Roboto||||\" body_font_size=\"18\" body_line_height=\"2.1em\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"rgba(0,0,0,0)\" button_border_color=\"rgba(255,255,255,0.51)\" button_border_radius=\"4\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,255,255,0.51)\" button_border_radius_hover=\"4\"]\n\n<span style=\"font-size:48px;margin-bottom:10px;font-weight:500\">$18</span>\n\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\">Unlimited Bandwidth and Storage</strong>\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> Mobile-Optimized Website</strong>\nPowerful Metrics\n24/7 Customer Support\n\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Advance Plan\" title=\"Advance\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_text_color=\"#ffffff\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"20%||20%|\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"on\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"height: 100%||font-weight:300;\" custom_css_promo_description=\"font-weight:300;||\" custom_css_promo_button=\"margin-top:9px;||width:168px;||padding-top:18px;||padding-bottom:18px;\" custom_css_promo_title=\"margin-bottom:20px;\" header_font=\"Roboto||||\" header_font_size=\"64\" body_font=\"Roboto||||\" body_font_size=\"18\" body_line_height=\"2.1em\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"rgba(0,0,0,0)\" button_border_color=\"rgba(255,255,255,0.51)\" button_border_radius=\"4\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,255,255,0.51)\" button_border_radius_hover=\"4\"]\n\n<span style=\"font-size:48px;margin-bottom:10px;font-weight:500\">$48</span>\n\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\">Unlimited Bandwidth and Storage</strong>\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> Mobile-Optimized Website</strong>\n<strong><img style=\"margin: -5px 10px 2px 0px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> Powerful Metrics</strong>\n<strong><img style=\"margin: -5px 10px 2px 0px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> 24/7 Customer Support</strong>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Pricing Table','','publish','closed','closed','','pricing-table-5','','','2016-07-06 18:09:59','2016-07-06 16:09:59','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/pricing-table-5/',0,'et_pb_layout','',0),(25582,1,'2016-07-06 18:10:04','2016-07-06 16:10:04','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"http://localhost:8888/wp/wp-content/uploads/2016/07/013-2.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"on\" parallax_method_1=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"#ea1d63\" padding_top_2=\"11%\" padding_right_2=\"9%\" padding_bottom_2=\"11%\" padding_left_2=\"9%\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" bg_img_1=\"http://localhost:8888/wp-content/uploads/2016/07/013-1.jpg\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#cdcece\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25%||2%|\" text_font_size=\"24\" text_font=\"Roboto||||\"]\n\nBeginner\'s Guide\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"72\" text_font=\"Roboto|on|||\" text_font_size_tablet=\"52\" text_line_height=\"1.1em\"]\n\nA Swim in\nThe Ocean\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||25%|\" text_font_size=\"52\" text_font=\"Roboto||||\"]\n\n<img class=\"alignnone size-full wp-image-5398\" style=\"margin-top: 32px; margin-bottom:15px;\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/thumb.png\" alt=\"thumb\" width=\"60\" height=\"60\">\n<h3><span style=\"color: #ffffff\">Rick F.</span></h3>\n<h5><span style=\"color: #cdcece\">Designer at Ciao</span></h5>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|phone\" custom_margin_last_edited=\"on|desktop\" custom_margin_tablet=\"15%|10%||\" custom_css_main_element=\"font-weight: 500;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|phone\"]\n\nOpen Water Swimming\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"500px\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight:400;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|phone\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nLorem ipsum dolor sit amet, consect elit. Phasellus ac magna non augue port titor scelerisque ac id diam. Mauris elit velit, lobortis sed interdum at.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"440px\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight:300;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nProin ut quam eros. Donec sed lobortis diam. Nulla nec odio lacus. Quisque porttitor egestas dolor in placerat. Nunc vehicula dapibus ipsum. Duis venena tis risus non nunc ferme ntum dapibus. Morbi lorem ante, male suada in mollis nec, auctor nec massa. Aenean tempus dui eget felis blandit at fringilla urna ultrices. Suspendisse feugiat.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"8%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight: 500;\" custom_padding=\"||60px|\" custom_margin_tablet=\"4%|||\" custom_margin_phone=\"10%|||\"]\n\n<span style=\"text-decoration: underline\"><a style=\"color: #ffffff;text-decoration: underline\" href=\"#\">READ MORE</a></span>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" background_image=\"http://localhost:8888/wp/wp-content/uploads/2016/07/022-3.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"on\" parallax_method_1=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"rgba(0,0,0,0)\" padding_2_last_edited=\"on|desktop\" background_color_1=\"#ea1d63\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\"]\n\n<img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/02-01.png\" alt=\"02-01\" width=\"72\" height=\"126\">Microphone\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.\nSed nunc orci, ultriciescongue vehicula.\nIn aliquet facilisis condime.</p>\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Alarm Clock\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\"]\n\n<img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/01-02.png\" alt=\"02-01\">Microphone\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.\nSed nunc orci, ultriciescongue vehicula.\nIn aliquet facilisis condime.</p>\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" background_image=\"http://localhost:8888/wp/wp-content/uploads/2016/07/03-2.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"#ea1d63\" padding_top_2=\"7.5%\" padding_right_2=\"9%\" padding_left_2=\"9%\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"32\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#d4d4d4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25%||4%|8%\" text_font=\"Roboto||||\" text_font_size_phone=\"28\"]\n\nArticle\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font_size=\"72\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||4%|8%\" custom_css_main_element=\"font-weight:500;\" text_font=\"Roboto||||\" text_line_height=\"1em\" text_font_size_tablet=\"52\"]\n\nHow to Wash\na Dress Shirt\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_text_color=\"#b7b7b8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20%|8%\" custom_css_main_element=\"font-weight:500;\" text_font=\"Roboto|on|||\" text_line_height=\"1.1em\" text_font_size=\"13\"]\n\nSHARE THIS:\n<p><a href=\" #\"><img style=\"margin-right:2%\" class=\"alignnone size-medium wp-image-5543\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/01-fb.png\" alt=\"01-fb\" width=\"9\" height=\"18\"> </a>     <a href=\"#\"><img class=\"alignnone size-medium wp-image-5544\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/02-twitter.png\" alt=\"02-twitter\" width=\"23\" height=\"18\"></a></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"500px\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|phone\" custom_margin_last_edited=\"on|desktop\" custom_margin_tablet=\"15%|10%||\" custom_css_main_element=\"font-weight: 500;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\"]\n\nTips On Washing\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"500px\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight:400;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|phone\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nLorem ipsum dolor sit amet, consect elit. Phasellus ac magna non augue port titor scelerisque ac id diam. Mauris elit velit, lobortis sed interdum at.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"440px\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"5%|||\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight:300;\" max_width_tablet=\"100%\" max_width_last_edited=\"on|desktop\" custom_margin_tablet=\"3%|||\" custom_margin_phone=\"7%|||\"]\n\nProin ut quam eros. Donec sed lobortis diam. Nulla nec odio lacus. Quisque porttitor egestas dolor in placerat. Nunc vehicula dapibus ipsum. Duis venena tis risus non nunc ferme ntum dapibus. Morbi lorem ante, male suada in mollis nec, auctor nec massa. Aenean tempus dui eget felis blandit at fringilla urna ultrices. Suspendisse feugiat.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"8%||20%|\" custom_margin_last_edited=\"on|phone\" custom_css_main_element=\"font-weight: 500;\" custom_margin_tablet=\"6%||20%|\" custom_margin_phone=\"10%||20%|\"]\n\n<span style=\"text-decoration: underline\"><a style=\"color: #ffffff;text-decoration: underline\" href=\"#\">READ MORE</a></span>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"#111314\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" background_color_1=\"#ea1d63\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Basic Plan\" title=\"Basic\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_text_color=\"#ffffff\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"24%||24%|\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"on\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"height: 100%||font-weight:300;\" custom_css_promo_description=\"font-weight:300;||\" custom_css_promo_button=\"margin-top:9px;||width:168px;||padding-top:18px;||padding-bottom:18px;\" custom_css_promo_title=\"margin-bottom:20px;\" header_font=\"Roboto||||\" header_font_size=\"64\" body_font=\"Roboto||||\" body_font_size=\"18\" body_line_height=\"2.1em\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"rgba(0,0,0,0)\" button_border_color=\"rgba(255,255,255,0.51)\" button_border_radius=\"4\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,255,255,0.51)\" button_border_radius_hover=\"4\"]\n\n<span style=\"font-size:48px;margin-bottom:10px;font-weight:500\">$18</span>\n\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\">Unlimited Bandwidth and Storage</strong>\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> Mobile-Optimized Website</strong>\nPowerful Metrics\n24/7 Customer Support\n\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Advance Plan\" title=\"Advance\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_text_color=\"#ffffff\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"20%||20%|\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"on\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"height: 100%||font-weight:300;\" custom_css_promo_description=\"font-weight:300;||\" custom_css_promo_button=\"margin-top:9px;||width:168px;||padding-top:18px;||padding-bottom:18px;\" custom_css_promo_title=\"margin-bottom:20px;\" header_font=\"Roboto||||\" header_font_size=\"64\" body_font=\"Roboto||||\" body_font_size=\"18\" body_line_height=\"2.1em\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"rgba(0,0,0,0)\" button_border_color=\"rgba(255,255,255,0.51)\" button_border_radius=\"4\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,255,255,0.51)\" button_border_radius_hover=\"4\"]\n\n<span style=\"font-size:48px;margin-bottom:10px;font-weight:500\">$48</span>\n\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\">Unlimited Bandwidth and Storage</strong>\n<strong> <img style=\"margin: -5px 10px 2px 0px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> Mobile-Optimized Website</strong>\n<strong><img style=\"margin: -5px 10px 2px 0px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> Powerful Metrics</strong>\n<strong><img style=\"margin: -5px 10px 2px 0px\" src=\"http://localhost:8888/wp/wp-content/uploads/2016/07/05-05-1.png\" alt=\"05-05\" width=\"19\" height=\"16\" class=\"alignnone size-full wp-image-5612\"> 24/7 Customer Support</strong>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Split Screen Layout Kit','','publish','closed','closed','','split-screen-layout-kit-3','','','2016-07-06 18:10:04','2016-07-06 16:10:04','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/split-screen-layout-kit-3/',0,'et_pb_layout','',0),(25729,1,'2016-07-18 00:22:44','2016-07-17 22:22:44','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"height: 100%;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_css_main_element=\"width: 100%;||height: 100%;\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_css_main_1=\"height: 100%;\" custom_margin=\"0px||0px|\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_after=\"display:none;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" background_color=\"#5b5b5b\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/011.jpg\" custom_css_main_element=\"background-size: cover;||height: 100%;\" module_class=\"custom-cover-image\"]\n\n\n\n[/et_pb_text][et_pb_code admin_label=\"Custom Style (Required)\" locked=\"on\" parent_locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" locked=\"on\" parent_locked=\"off\" disabled=\"off\" disabled_on=\"off|off|on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_text_color=\"#101010\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|phone\" custom_margin=\"|10%||\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"15%|10%||\"]\n\n<p class=\"p1\"><span class=\"s1\">Jenine Hills</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2%|10%||\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"18px\"]\n\n<p class=\"p1\"><span class=\"s1\">—Travel Blogger</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#101010\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"10%|10%|11%|\" text_line_height=\"1.5em\" max_width=\"420px\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_css_main_element=\"font-weight: 400;\"]\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum.\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#101010\" button_border_width=\"8\" button_border_color=\"#101010\" button_border_radius=\"0\" button_letter_spacing=\"1\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"1\" button_font=\"Roboto|on|||\" disabled_on=\"off|off|off\" disabled=\"off\"]\n\n\n\n[/et_pb_button][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"on\" disabled_on=\"on|on|on\"]\n\n<a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\"><img class=\"alignnone size-full wp-image-4333\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\" alt=\"02\" width=\"9\" height=\"18\" /></a>     <a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\"><img class=\"alignnone size-full wp-image-4334\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\" alt=\"03\" width=\"23\" height=\"18\" /></a>     <a href=\"#\"><img class=\"alignnone size-full wp-image-4335\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/04.png\" alt=\"04\" width=\"18\" height=\"18\" /></a>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Profile Page #8','','publish','closed','closed','','profile-page-8-4','','','2016-07-18 00:22:44','2016-07-17 22:22:44','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/profile-page-8-4/',0,'et_pb_layout','',0),(25730,1,'2017-08-02 20:48:33','2017-08-03 00:48:33','[et_pb_section bb_built=\"1\" admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"height: 100%;\"][et_pb_row make_fullwidth=\"on\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_css_main_element=\"width: 100%;||height: 100%;\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_css_main_1=\"height: 100%;\" custom_margin=\"0px||0px|\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_after=\"display:none;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\"][et_pb_column type=\"2_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" background_color=\"#5b5b5b\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/011.jpg\" custom_css_main_element=\"background-size: cover;||height: 100%;\" module_class=\"custom-cover-image\" /][et_pb_code admin_label=\"Custom Style (Required)\" locked=\"on\" parent_locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" locked=\"on\" parent_locked=\"off\" disabled=\"off\" disabled_on=\"off|off|on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" max_width=\"400px\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_text_color=\"#101010\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_last_edited=\"on|phone\" custom_margin=\"|10%||\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"15%|10%||\"]\r\n<p class=\"p1\"><span class=\"s1\">Jenine Hills</span></p>\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2%|10%||\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"18px\"]\r\n<p class=\"p1\"><span class=\"s1\">—Travel Blogger</span></p>\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#101010\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"10%|10%|11%|\" text_line_height=\"1.5em\" max_width=\"420px\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum.\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#\" url_new_window=\"off\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#101010\" button_border_width=\"8\" button_border_color=\"#101010\" button_border_radius=\"0\" button_letter_spacing=\"1\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"1\" button_font=\"Roboto|on|||\" disabled_on=\"off|off|off\" disabled=\"off\" /][et_pb_text background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"on\" disabled_on=\"on|on|on\"]\r\n\r\n<a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\"><img class=\"alignnone size-full wp-image-4333\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\" alt=\"02\" width=\"9\" height=\"18\" /></a>     <a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\"><img class=\"alignnone size-full wp-image-4334\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\" alt=\"03\" width=\"23\" height=\"18\" /></a>     <a href=\"#\"><img class=\"alignnone size-full wp-image-4335\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/04.png\" alt=\"04\" width=\"18\" height=\"18\" /></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 20:48:33','2017-08-03 00:48:33','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25732,1,'2017-08-02 21:07:08','2017-08-03 01:07:08','[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" admin_label=\"section\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" column_padding_mobile=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\" custom_css_main=\"height: 100%;\"][et_pb_text module_class=\"custom-cover-image\" _builder_version=\"3.0.47\" background_color=\"#5b5b5b\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/011.jpg\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"background-size: cover;||height: 100%;\"][/et_pb_text][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code disabled_on=\"off|off|on\" admin_label=\"Custom Mobile Style (Required)\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_phone=\"6%|4%|6%|4%\" padding_tablet=\"8%|4%|7%|4%\" padding_last_edited=\"on|desktop\" padding_bottom=\"14%\" padding_left=\"6%\" padding_right=\"6%\" padding_top=\"16%\" column_padding_mobile=\"on\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"off\" custom_css_main=\"height: 100%;||overflow: hidden;\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\" header_text_color=\"#212121\"]<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]<p><span style=\"color: #616161;\">Creative Director</span></p>[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]<p>Great creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work&mdash;you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to develop. Want to join me?</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" button_bg_color_hover=\"#cfd8dc\" button_text_color_hover=\"#1a237e\"][/et_pb_button][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\"]\r\n\r\n<a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\"><img class=\"alignnone size-full wp-image-4333\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\" alt=\"02\" width=\"9\" height=\"18\" /></a>     <a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\"><img class=\"alignnone size-full wp-image-4334\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\" alt=\"03\" width=\"23\" height=\"18\" /></a>     <a href=\"#\"><img class=\"alignnone size-full wp-image-4335\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/04.png\" alt=\"04\" width=\"18\" height=\"18\" /></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 21:07:08','2017-08-03 01:07:08','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25733,1,'2017-08-02 21:08:07','2017-08-03 01:08:07','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" column_padding_mobile=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\"][et_pb_column type=\"2_3\"][et_pb_text module_class=\"custom-cover-image\" _builder_version=\"3.0.65\" background_color=\"#5b5b5b\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/011.jpg\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"background-size: cover;||height: 100%;\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" /][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" disabled_on=\"off|off|on\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\" header_text_color=\"#212121\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to develop. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" button_bg_color_hover=\"#cfd8dc\" button_text_color_hover=\"#1a237e\" /][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\"]\r\n\r\n<a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\"><img class=\"alignnone size-full wp-image-4333\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02.png\" alt=\"02\" width=\"9\" height=\"18\" /></a>     <a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\"><img class=\"alignnone size-full wp-image-4334\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/03.png\" alt=\"03\" width=\"23\" height=\"18\" /></a>     <a href=\"#\"><img class=\"alignnone size-full wp-image-4335\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/04.png\" alt=\"04\" width=\"18\" height=\"18\" /></a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 21:08:07','2017-08-03 01:08:07','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25735,1,'2017-08-02 21:09:29','2017-08-03 01:09:29','[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" admin_label=\"section\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" column_padding_mobile=\"on\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\" custom_css_main=\"height: 100%;\"][et_pb_text module_class=\"custom-cover-image\" _builder_version=\"3.0.65\" background_color=\"#5b5b5b\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/011.jpg\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"background-size: cover;||height: 100%;\"][/et_pb_text][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code disabled_on=\"off|off|on\" admin_label=\"Custom Mobile Style (Required)\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_phone=\"6%|4%|6%|4%\" padding_tablet=\"8%|4%|7%|4%\" padding_last_edited=\"on|desktop\" padding_bottom=\"14%\" padding_left=\"6%\" padding_right=\"6%\" padding_top=\"16%\" column_padding_mobile=\"on\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"off\" custom_css_main=\"height: 100%;||overflow: hidden;\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]<p>Great creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work&mdash;you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?</p>[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\"][/et_pb_button][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 21:09:29','2017-08-03 01:09:29','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25737,1,'2017-08-02 21:10:40','2017-08-03 01:10:40','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"2_3\"][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.47\" locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" disabled_on=\"off|off|on\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" /][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 21:10:40','2017-08-03 01:10:40','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25740,1,'2017-08-02 21:13:27','2017-08-03 01:13:27','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"2_3\"][et_pb_image _builder_version=\"3.0.65\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/IMG_6145.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"on\" /][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.65\" locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" disabled_on=\"off|off|on\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" /][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 21:13:27','2017-08-03 01:13:27','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25741,1,'2017-08-02 21:17:50','2017-08-03 01:17:50','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"2_3\"][et_pb_image _builder_version=\"3.0.65\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/IMG_6145.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"on\" /][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.65\" locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" disabled_on=\"off|off|on\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/contact-me/\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 21:17:50','2017-08-03 01:17:50','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25742,1,'2017-08-02 21:18:40','2017-08-03 01:18:40','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"2_3\"][et_pb_image _builder_version=\"3.0.65\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/IMG_6145.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"on\" /][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.65\" locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" disabled_on=\"off|off|on\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/contact-me/\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-02 21:18:40','2017-08-03 01:18:40','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25745,1,'2017-08-03 09:47:53','2017-08-03 13:47:53','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"2_3\"][et_pb_image _builder_version=\"3.0.65\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/IMG_6145.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"off\" max_width=\"600px\" custom_margin=\"200px||500px|\" /][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.65\" locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" disabled_on=\"off|off|on\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/contact-me/\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" url_new_window=\"off\" background_layout=\"light\" button_icon_placement=\"right\" /][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 09:47:53','2017-08-03 13:47:53','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25747,1,'2017-08-03 09:53:48','2017-08-03 13:53:48','[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" admin_label=\"section\" _builder_version=\"3.0.47\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#ffffff\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\" custom_css_main=\"height: 100%;\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/IMG_6145.jpg\" align=\"center\" max_width=\"400px\" _builder_version=\"3.0.65\" custom_margin=\"200px|||350px\" use_border_color=\"on\" border_width=\"20px\"][/et_pb_image][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.65\" locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code disabled_on=\"off|off|on\" admin_label=\"Custom Mobile Style (Required)\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" padding_phone=\"6%|4%|6%|4%\" padding_tablet=\"8%|4%|7%|4%\" padding_last_edited=\"on|desktop\" padding_bottom=\"14%\" padding_left=\"6%\" padding_right=\"6%\" padding_top=\"16%\" background_color=\"#ffffff\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\" custom_css_main=\"height: 100%;||overflow: hidden;\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/contact-me/\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\"][/et_pb_button][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 09:53:48','2017-08-03 13:53:48','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25750,1,'2017-08-03 10:23:19','2017-08-03 14:23:19','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#ffffff\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" _builder_version=\"3.0.65\" custom_css_main_element=\"height: 100%;\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color=\"#1f497d\" background_color_2=\"#ffffff\" padding_top_2=\"16%\" padding_right_2=\"6%\" padding_bottom_2=\"14%\" padding_left_2=\"6%\" parallax_method_1=\"off\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_tablet=\"8%|4%|7%|4%\" padding_2_phone=\"6%|4%|6%|4%\" padding_2_last_edited=\"on|desktop\" custom_css_main_1=\"height: 100%;\" custom_css_main_2=\"height: 100%;||overflow: hidden;\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"width: 100%;||height: 100%;\" custom_css_after=\"display:none;\"][et_pb_column type=\"2_3\"][et_pb_code admin_label=\"Custom Style (Required)\" _builder_version=\"3.0.65\" locked=\"off\"]&lt;style&gt; /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: 100%; } #page-container { margin: 0 !important; padding: 0 !important; } #main-footer { display: none; }&lt;/style&gt;[/et_pb_code][et_pb_code admin_label=\"Custom Mobile Style (Required)\" disabled_on=\"off|off|on\" _builder_version=\"3.0.47\" locked=\"on\"]&lt;style&gt; @media (max-width: 981px) { /* Sets 100% Height for this Page */ html, body, #page-container, #et-main-area, #main-content, .page, .entry-content { height: auto; } .custom-cover-image { min-height: 400px } }&lt;/style&gt;[/et_pb_code][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<h1>HELLO, I\'M JEREMY,\r\nA CREATIVE DIRECTOR WITH 20 YEARS\' EXPERIENCE</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text max_width=\"400px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"36px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#616161\" text_line_height=\"1em\" header_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" custom_margin_tablet=\"15%|10%||\" custom_margin_last_edited=\"on|tablet\" inline_fonts=\"Montserrat\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-family: Montserrat;\">Jeremy Feldman</span></p>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_font_size_phone=\"18px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#aaaaaa\" text_line_height=\"1.2em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"2%|10%||\" inline_fonts=\"Source Sans Pro\"]\r\n\r\n<span style=\"color: #616161;\">Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text max_width=\"420px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"10%|10%|11%|\" custom_margin_tablet=\"3%|24%|3%|\" custom_margin_phone=\"10%|24%|10%|\" custom_margin_last_edited=\"on|tablet\" custom_css_main_element=\"font-weight: 400;\" inline_fonts=\"Source Sans Pro\"]\r\n\r\nGreat creative advertising starts with a big idea. I still get inspired when I see original, emotionally rich and intellectually curious work—you can almost feel the passion behind it. That\'s the kind of work I\'m interested in developing, and motivating others to create. Want to join me?\r\n\r\n[/et_pb_text][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/contact-me/\" button_text=\"GET IN TOUCH\" button_alignment=\"left\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"18px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#101010\" button_border_radius=\"4px\" button_letter_spacing=\"1\" button_font=\"Source Sans Pro||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"1\" background_color=\"#7EBEC5\" /][et_pb_text disabled_on=\"on|on|on\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" disabled=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 10:23:19','2017-08-03 14:23:19','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25753,1,'2017-08-03 10:35:51','2017-08-03 14:35:51','[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 10:35:51','2017-08-03 14:35:51','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25754,1,'2017-08-03 10:44:42','2017-08-03 14:44:42','','05-05-1','','inherit','open','closed','','05-05-1','','','2017-08-03 10:44:42','2017-08-03 14:44:42','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/05-05-1.png',0,'attachment','image/png',0),(25756,1,'2017-08-03 10:44:43','2017-08-03 14:44:43','','01-fb','','inherit','open','closed','','01-fb','','','2017-08-03 10:44:43','2017-08-03 14:44:43','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/01-fb.png',0,'attachment','image/png',0),(25757,1,'2017-08-03 10:44:43','2017-08-03 14:44:43','','02-twitter','','inherit','open','closed','','02-twitter','','','2017-08-03 10:44:43','2017-08-03 14:44:43','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/02-twitter.png',0,'attachment','image/png',0),(25763,1,'2017-08-03 10:46:24','2017-08-03 14:46:24','[et_pb_section bb_built=\"1\" admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\"][et_pb_row make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"on\" parallax_method_1=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"rgba(0,0,0,0)\" padding_2_last_edited=\"on|desktop\" background_color_1=\"#ea1d63\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\"]\r\n\r\n<p><img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02-01.png\" alt=\"02-01\" width=\"72\" height=\"126\">Microphone</p>\r\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.<br />\r\nSed nunc orci, ultriciescongue vehicula.<br />\r\nIn aliquet facilisis condime.</p>\r\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Alarm Clock\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\"]\r\n\r\n<p><img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/01-02.png\" alt=\"02-01\">Microphone</p>\r\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.<br />\r\nSed nunc orci, ultriciescongue vehicula.<br />\r\nIn aliquet facilisis condime.</p>\r\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 10:46:24','2017-08-03 14:46:24','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25764,1,'2017-08-03 10:47:38','2017-08-03 14:47:38','[et_pb_section bb_built=\"1\" admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\"][et_pb_row make_fullwidth=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" parallax_method=\"off\" parallax_1=\"on\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"rgba(0,0,0,0)\" padding_2_last_edited=\"on|desktop\" background_color_1=\"#1f497d\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" _builder_version=\"3.0.65\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\n<p><img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02-01.png\" alt=\"02-01\" width=\"72\" height=\"126\">Microphone</p>\r\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.<br />\r\nSed nunc orci, ultriciescongue vehicula.<br />\r\nIn aliquet facilisis condime.</p>\r\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Alarm Clock\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\n<p><img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/01-02.png\" alt=\"02-01\">Microphone</p>\r\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.<br />\r\nSed nunc orci, ultriciescongue vehicula.<br />\r\nIn aliquet facilisis condime.</p>\r\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 10:47:38','2017-08-03 14:47:38','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25766,1,'2017-08-03 10:49:46','2017-08-03 14:49:46','[et_pb_section bb_built=\"1\" admin_label=\"section\" transparent_background=\"off\" background_color=\"#555555\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\"][et_pb_row make_fullwidth=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" padding_mobile=\"on\" parallax_method=\"off\" parallax_1=\"on\" parallax_method_2=\"off\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" background_color_2=\"rgba(0,0,0,0)\" padding_2_last_edited=\"on|desktop\" background_color_1=\"#1f497d\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" _builder_version=\"3.0.65\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\n<p><img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/02-01.png\" alt=\"02-01\" width=\"72\" height=\"126\">Microphone</p>\r\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.<br />\r\nSed nunc orci, ultriciescongue vehicula.<br />\r\nIn aliquet facilisis condime.</p>\r\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Alarm Clock\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_text_color=\"#ffffff\" text_font=\"Roboto||||\" text_font_size=\"48\" text_line_height=\"1em\" text_font_size_last_edited=\"on|desktop\" custom_padding=\"26%||26%|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\" _builder_version=\"3.0.65\"]\r\n\r\n<p><img class=\"size-full wp-image-5468 aligncenter\" style=\"margin-bottom: 43px\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/01-02.png\" alt=\"02-01\">Microphone</p>\r\n<p style=\"margin-top: -26px;margin-bottom: 10px;font-size: 20px;font-weight: 300;line-height: 140%\">In facilisis scelerisque dui vel dignissim.<br />\r\nSed nunc orci, ultriciescongue vehicula.<br />\r\nIn aliquet facilisis condime.</p>\r\n<p style=\"font-size: 16px;font-weight: 500\"><a style=\"text-decoration: underline;color: #ffffff\" href=\"\">READ MORE</a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 10:49:46','2017-08-03 14:49:46','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25768,1,'2017-08-03 11:00:47','2017-08-03 15:00:47','[et_pb_section fb_built=\"1\" background_color=\"#555555\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.47\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" header_font_size=\"70px\"]<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" admin_label=\"Alarm Clock\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"48\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|\" custom_css_main_element=\"font-weight:400;\"]<p class=\"p1\"><span class=\"s1\" style=\"font-size: small;\">My career has introduced me to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p class=\"p1\"><span class=\"s1\" style=\"font-size: small;\">Let me tell you some stories about brands I&rsquo;ve recently worked with during my 5+ years at Atmosphere Proximity. </span></p>\n<p class=\"p1\"><span class=\"s1\" style=\"font-size: small;\">I hope you enjoy the work.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:00:47','2017-08-03 15:00:47','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25770,1,'2017-08-03 11:02:11','2017-08-03 15:02:11','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#555555\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.47\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" header_font_size=\"70px\"]\r\n\r\n<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Alarm Clock\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"48\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-size: small;\">My career has introduced me to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-size: small;\">Let me tell you some stories about brands I&rsquo;ve recently worked with during my 5+ years at Atmosphere Proximity. </span></p>\r\n<p class=\"p1\"><span class=\"s1\" style=\"font-size: small;\">I hope you enjoy the work.</span></p>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" border_style=\"solid\"]\r\n\r\nMy career has introduced me to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.\r\n\r\nLet me tell you some stories about brands I’ve recently worked with during my 5+ years at Atmosphere Proximity. \r\n\r\nI hope you enjoy the work.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:02:11','2017-08-03 15:02:11','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25771,1,'2017-08-03 11:02:20','2017-08-03 15:02:20','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#555555\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.47\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" custom_width_percent=\"100%\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" header_font_size=\"70px\"]\r\n\r\n<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" border_style=\"solid\"]\r\n\r\nMy career has introduced me to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.\r\n\r\nLet me tell you some stories about brands I’ve recently worked with during my 5+ years at Atmosphere Proximity. \r\n\r\nI hope you enjoy the work.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:02:20','2017-08-03 15:02:20','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25773,1,'2017-08-03 11:10:50','2017-08-03 15:10:50','[et_pb_section fb_built=\"1\" background_color=\"#555555\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.47\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/022-3.jpg\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ffffff\" text_line_height=\"1.5em\" custom_margin=\"26%|20%||20%\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me regale you with entertaining tales about a few of the brands I&rsquo;ve worked with. They\'ll put a smile on your lips, and a skip in your step.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:10:50','2017-08-03 15:10:50','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25775,1,'2017-08-03 11:13:21','2017-08-03 15:13:21','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ffffff\" text_line_height=\"1.5em\" custom_margin=\"26%|20%||20%\"]\r\n\r\n<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\r\n<p>Let me regale you with entertaining tales about a few of the brands I&rsquo;ve worked with. They\'ll put a smile on your lips, and a skip in your step.</p>\r\n<p>I hope you enjoy the work.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:13:21','2017-08-03 15:13:21','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25777,1,'2017-08-03 11:18:52','2017-08-03 15:18:52','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ffffff\" text_line_height=\"1.5em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I&rsquo;ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:18:52','2017-08-03 15:18:52','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25778,1,'2017-08-03 11:33:04','2017-08-03 15:33:04','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#eceff1\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Home Page Button\" button_url=\"#\" button_text=\"Let me tell you a few stories about some brands I know\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"40px\" button_text_color=\"#212121\" button_use_icon=\"on\" background_color=\"#7EBEC5\" button_font=\"Roboto|on|||\" button_border_width=\"0px\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_icon=\"%%24%%\" button_on_hover=\"off\" button_icon_color=\"#1a237e\" button_letter_spacing_hover=\"2px\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"32px\" url_new_window=\"off\" background_layout=\"light\" button_letter_spacing=\"0\" button_icon_placement=\"right\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-03 11:33:04','2017-08-03 15:33:04','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(25780,1,'2017-08-03 11:42:01','2017-08-03 15:42:01','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"29px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"32px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" background_layout=\"dark\" button_border_color_hover=\"rgba(255,147,53,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-03 11:42:01','2017-08-03 15:42:01','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(25782,1,'2017-08-03 11:43:26','2017-08-03 15:43:26','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"29px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"29px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" background_layout=\"dark\" button_border_color_hover=\"rgba(255,147,53,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-03 11:43:26','2017-08-03 15:43:26','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(25784,1,'2017-08-03 11:45:23','2017-08-03 15:45:23','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||300px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"29px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" background_layout=\"dark\" button_border_color_hover=\"rgba(255,147,53,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-03 11:45:23','2017-08-03 15:45:23','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(25786,1,'2017-08-03 11:48:06','2017-08-03 15:48:06','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||301px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"29px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\" background_layout=\"dark\" button_border_color_hover=\"rgba(255,147,53,0)\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-03 11:48:06','2017-08-03 15:48:06','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(25789,1,'2017-08-03 11:52:12','2017-08-03 15:52:12','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#1a237e\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font_size=\"14px\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" text_font=\"Roboto||||\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-03 11:52:12','2017-08-03 15:52:12','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(25791,1,'2017-08-03 11:53:36','2017-08-03 15:53:36','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:53:36','2017-08-03 15:53:36','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25792,1,'2017-08-03 11:54:52','2017-08-03 15:54:52','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" text_font_size_phone=\"30px\"]\r\n\r\n<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:54:52','2017-08-03 15:54:52','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25794,1,'2017-08-03 11:56:44','2017-08-03 15:56:44','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" text_font_size_phone=\"34px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"36px\"]<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:56:44','2017-08-03 15:56:44','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25796,1,'2017-08-03 11:58:39','2017-08-03 15:58:39','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" text_font_size_phone=\"34px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"36px\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"26%|||10%\"]<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|20%||20%\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 11:58:39','2017-08-03 15:58:39','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25798,1,'2017-08-03 12:02:14','2017-08-03 16:02:14','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" text_font_size_phone=\"34px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"36px\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"26%||0px|10%\"]<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"12%|20%||11%\" admin_label=\"About Me Text\" custom_padding=\"||10%|\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 12:02:14','2017-08-03 16:02:14','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25800,1,'2017-08-03 12:02:47','2017-08-03 16:02:47','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" text_font_size_phone=\"34px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"36px\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"26%||0px|10%\"]<p><strong>HELLO, <br />I\'M JEREMY, <br /><span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br /><span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"12%|20%||11%\" admin_label=\"About Me Text\" custom_padding=\"||20%|\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 12:02:47','2017-08-03 16:02:47','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25803,1,'2017-08-03 12:06:30','2017-08-03 16:06:30','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#212121\" button_bg_color=\"#ffffff\" button_border_width=\"1px\" button_border_color=\"#263238\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#1f497d\" button_bg_color_hover=\"#cfd8dc\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\"]\r\n\r\nSun Chemical Branding\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-03 12:06:30','2017-08-03 16:06:30','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(25804,1,'2017-08-03 12:08:04','2017-08-03 16:08:04','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" text_font_size_phone=\"34px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"36px\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"26%||0px|10%\"]\r\n\r\n<strong>HELLO,\r\nI\'M JEREMY,\r\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span>\r\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"12%|20%||11%\" custom_padding=\"||20%|\"]\r\n\r\nOver the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.\r\n\r\nLet me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.\r\n\r\nI hope you enjoy the work.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"About Me Button\" _builder_version=\"3.0.65\" button_text=\"LET\'S CHAT\" button_url=\"#\" url_new_window=\"off\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 12:08:04','2017-08-03 16:08:04','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25806,1,'2017-08-03 12:10:54','2017-08-03 16:10:54','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|10%\" custom_css_main_element=\"font-weight:400;\" text_font_size_phone=\"34px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"36px\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"26%||0px|10%\"]\r\n\r\n<strong>HELLO,\r\nI\'M JEREMY,\r\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span>\r\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" inline_fonts=\"Roboto Light\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"12%|20%||11%\" custom_padding=\"||20%|\"]\r\n\r\nOver the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.\r\n\r\nLet me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.\r\n\r\nI hope you enjoy the work.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 12:10:54','2017-08-03 16:10:54','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(25815,1,'2017-08-03 13:37:46','2017-08-03 17:37:46','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.7em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%; {\npadding-bottom: 10%\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','publish','closed','closed','','divi','','','2017-08-27 21:15:29','2017-08-28 01:15:29','',0,'http://copyvet.globat.com/wordpress/divi/',0,'custom_css','',0),(25816,1,'2017-08-03 13:37:46','2017-08-03 17:37:46','','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-03 13:37:46','2017-08-03 17:37:46','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(25823,1,'2017-08-03 14:03:45','2017-08-03 18:03:45','@media only screen and (max-width: 500px) {\n#logo {\n    height: 100% !important;\n    max-height: 100% !important;\n    width: auto;\n    max-width: 100% !important;\n    }\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-03 14:03:45','2017-08-03 18:03:45','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(25824,1,'2017-08-03 14:04:13','2017-08-03 18:04:13','@media only screen and (max-width: 300px) {\n#logo {\n    height: 100% !important;\n    max-height: 100% !important;\n    width: auto;\n    max-width: 100% !important;\n    }\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-03 14:04:13','2017-08-03 18:04:13','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(25825,1,'2017-08-03 14:04:34','2017-08-03 18:04:34','@media only screen and (max-width: 350px) {\n#logo {\n    height: 100% !important;\n    max-height: 100% !important;\n    width: auto;\n    max-width: 100% !important;\n    }\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-03 14:04:34','2017-08-03 18:04:34','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(25826,1,'2017-08-03 14:04:48','2017-08-03 18:04:48','@media only screen and (max-width: 320px) {\n#logo {\n    height: 100% !important;\n    max-height: 100% !important;\n    width: auto;\n    max-width: 100% !important;\n    }\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-03 14:04:48','2017-08-03 18:04:48','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(25827,1,'2017-08-03 14:05:01','2017-08-03 18:05:01','@media only screen and (max-width: 300px) {\n#logo {\n    height: 100% !important;\n    max-height: 100% !important;\n    width: auto;\n    max-width: 100% !important;\n    }\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-03 14:05:01','2017-08-03 18:05:01','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(25828,1,'2017-08-03 14:05:50','2017-08-03 18:05:50','','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-03 14:05:50','2017-08-03 18:05:50','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(25831,1,'2017-08-03 15:56:49','2017-08-03 19:56:49','http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/cropped-IMG_6145.jpg','cropped-IMG_6145.jpg','','inherit','open','closed','','cropped-img_6145-jpg','','','2017-08-03 15:56:49','2017-08-03 19:56:49','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/07/cropped-IMG_6145.jpg',0,'attachment','image/jpeg',0),(25837,1,'2017-08-03 16:07:54','2017-08-03 20:07:54','','Site_Logo_v5','','inherit','open','closed','','site_logo_v5','','','2017-08-03 16:07:54','2017-08-03 20:07:54','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/Site_Logo_v5.png',0,'attachment','image/png',0),(26625,1,'2016-07-29 23:27:44','2016-07-29 21:27:44','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"6%|||10%\" custom_css_main_element=\"font-weight:600;\"]\n\n<p>Alicia Ross.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"20\" text_text_color=\"#999999\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"1%||6%|10%\" text_line_height=\"1.5em\" custom_margin_last_edited=\"on|desktop\"]\n\n<p><span style=\"color: #d61e1d;\"><a style=\"color: #d61e1d;\" href=\"#\">Download my resume.</a></span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/082.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"left\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Open Sans||||\" text_font_size=\"10em\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"-50%|||\" custom_css_main_element=\"font-weight:600;\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"8em\" custom_margin_last_edited=\"on|desktop\" text_font_size_phone=\"5em\" custom_margin_phone=\"-16%|||\"]\n\nContent Writer.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"14%|||\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\"]\n\n<p>Profile</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"20\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget elit magna. Suspendisse sit amet eros rhoncus, congue libero ide, fermentum ipsum. Sed ac tellus feugiat, euismod turpis est povel, tristique elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Interdum et malesuada fames ac ante ipsum au primisamo in faucibus. Donec molestie Quisque et imperdiet.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"8%|||\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\"]\n\n<p>Experience</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>Mar 2012 - Today</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>Company Name</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\n\n<p>Position &amp; Role.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"22px|||\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>Apr 2014 - Jan 2015</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>Company Name</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\n\n<p>Position &amp; Role.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"22px|||\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>May 2012 - Feb 2014</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>Company Name</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\n\n<p>Position &amp; Role.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"8%||11%|\" parallax_3=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>Connect</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.8em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p><span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Twitter</a></span><br>\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Instagram</a></span><br>\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Google+</a></span><br>\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Tumblr</a></span></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\n\n<p>Direct</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\n\n<p>Position &amp; Role.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]','CV Resume #3','','publish','closed','closed','','cv-resume-3-2','','','2016-07-29 23:27:44','2016-07-29 21:27:44','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/cv-resume-3-2/',0,'et_pb_layout','',0),(26626,1,'2017-08-03 16:48:57','2017-08-03 20:48:57','[et_pb_section bb_built=\"1\" admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"6%|||10%\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nAlicia Ross.\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"20\" text_text_color=\"#999999\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"1%||6%|10%\" text_line_height=\"1.5em\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"color: #d61e1d;\"><a style=\"color: #d61e1d;\" href=\"#\">Download my resume.</a></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/082.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"left\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text background_layout=\"light\" text_orientation=\"center\" text_font=\"Open Sans||||\" text_font_size=\"10em\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"-50%|||\" custom_css_main_element=\"font-weight:600;\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"8em\" custom_margin_last_edited=\"on|desktop\" text_font_size_phone=\"5em\" custom_margin_phone=\"-16%|||\"]\r\n\r\nContent Writer.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"14%|||\"][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nProfile\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"20\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget elit magna. Suspendisse sit amet eros rhoncus, congue libero ide, fermentum ipsum. Sed ac tellus feugiat, euismod turpis est povel, tristique elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Interdum et malesuada fames ac ante ipsum au primisamo in faucibus. Donec molestie Quisque et imperdiet.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"8%|||\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nMar 2012 - Today\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"22px|||\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nApr 2014 - Jan 2015\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"22px|||\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nMay 2012 - Feb 2014\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"8%||11%|\" parallax_3=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nConnect\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.8em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Twitter</a></span>\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Instagram</a></span>\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Google+</a></span>\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Tumblr</a></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\"]\r\n\r\nDirect\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 16:48:57','2017-08-03 20:48:57','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26627,1,'2017-08-03 16:49:50','2017-08-03 20:49:50','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"14%|||\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nProfile\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"20\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eget elit magna. Suspendisse sit amet eros rhoncus, congue libero ide, fermentum ipsum. Sed ac tellus feugiat, euismod turpis est povel, tristique elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Interdum et malesuada fames ac ante ipsum au primisamo in faucibus. Donec molestie Quisque et imperdiet.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"8%|||\" parallax_3=\"off\" parallax_method_3=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nMar 2012 - Today\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"22px|||\" parallax_3=\"off\" parallax_method_3=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nApr 2014 - Jan 2015\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"22px|||\" parallax_3=\"off\" parallax_method_3=\"off\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nMay 2012 - Feb 2014\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"960px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"8%||11%|\" parallax_3=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nConnect\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.8em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Twitter</a></span>\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Instagram</a></span>\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Google+</a></span>\r\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Tumblr</a></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" custom_css_main_element=\"font-weight:600;\" custom_margin=\"||0px|\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nDirect\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.6em\" custom_margin=\"6px|||\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]\r\n\r\nPosition &amp; Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" admin_label=\"section\"][et_pb_row admin_label=\"row\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 16:49:50','2017-08-03 20:49:50','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26629,1,'2017-08-03 17:08:11','2017-08-03 21:08:11','[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" _builder_version=\"3.0.47\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"960px\" custom_padding=\"14%|||\" padding_mobile=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"24\" text_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nProfile\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#616161\" text_line_height=\"1.6em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" inline_fonts=\"Roboto Light\"]<p><span style=\"color: #616161; font-weight: normal; font-family: Roboto;\">15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</span></p>\n<ul>\n<li><span style=\"color: #616161; font-weight: normal; font-family: Roboto;\">Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.&nbsp;</span></li>\n</ul>\n<ul>\n<li><span style=\"color: #616161; font-weight: normal; font-family: Roboto;\">Rebranded Nestl&eacute; Waters, Sun Chemical and </span><br /><span style=\"color: #616161; font-weight: normal; font-family: Roboto;\"> Time Warner Cable Business Class.</span></li>\n<li><span style=\"color: #616161; font-weight: normal; font-family: Roboto;\">Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</span></li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"960px\" custom_padding=\"8%|||\" padding_mobile=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"24\" text_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" text_line_height=\"1.6em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]<p>July 2010 &ndash; Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#616161\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]<p>Atmosphere Proximity, Creative Director</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13px\" text_text_color=\"#666666\" text_line_height=\"1.5em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"6px|||\"]<ul>\n<li><strong>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</strong></li>\n<li><strong>Launched Saxenda, Novo Nordisk&rsquo;s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</strong></li>\n<li><strong>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</strong></li>\n<li><strong>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</strong></li>\n<li><strong>Launched RoomKey.com with a Facebook promotion garnering 25,000+ &ldquo;Likes&rdquo; in under three weeks</strong></li>\n<li><strong>Won a pitch for Ethicon&rsquo;s digital AOR and worked closely to develop their global digital marketing strategy</strong></li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"960px\" custom_padding=\"22px|||\" padding_mobile=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" text_line_height=\"1.6em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nApr 2014 - Jan 2015\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.6em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"6px|||\"]\r\n\r\nPosition & Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"960px\" custom_padding=\"22px|||\" padding_mobile=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" text_line_height=\"1.6em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nMay 2012 - Feb 2014\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#db4544\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nCompany Name\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.6em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"6px|||\"]\r\n\r\nPosition & Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"960px\" custom_padding=\"8%||11%|\" padding_mobile=\"on\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" parallax_method_3=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"24\" text_text_color=\"#212121\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nConnect\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" text_line_height=\"1.8em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]<p><span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Twitter</a></span><br />\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Instagram</a></span><br />\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Google+</a></span><br />\n<span style=\"color: #db4544;\"><a style=\"color: #db4544;\" href=\"#\">Tumblr</a></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#000000\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:600;\"]\r\n\r\nDirect\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.47\" text_font=\"Open Sans||||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.6em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"6px|||\"]\r\n\r\nPosition & Role.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:08:11','2017-08-03 21:08:11','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26631,1,'2017-08-03 17:15:36','2017-08-03 21:15:36','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto|on|||\" border_style=\"solid\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" border_style=\"solid\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and\r\nTime Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:15:36','2017-08-03 21:15:36','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26633,1,'2017-08-03 17:17:30','2017-08-03 21:17:30','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\nCreative Director</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and<br />\nTime Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:17:30','2017-08-03 21:17:30','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26635,1,'2017-08-03 17:20:12','2017-08-03 21:20:12','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and\r\nTime Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" text_text_color=\"#212121\" border_style=\"solid\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li><strong>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</strong></li>\r\n 	<li><strong>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</strong></li>\r\n 	<li><strong>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</strong></li>\r\n 	<li><strong>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</strong></li>\r\n 	<li><strong>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</strong></li>\r\n 	<li><strong>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</strong></li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:20:12','2017-08-03 21:20:12','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26637,1,'2017-08-03 17:27:04','2017-08-03 21:27:04','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\nCreative Director</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.4em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]<p>July 2010&ndash;Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\"]<ul>\n<li><strong>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</strong></li>\n<li><strong>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</strong></li>\n<li><strong>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</strong></li>\n<li><strong>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</strong></li>\n<li><strong>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</strong></li>\n<li><strong>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</strong></li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:27:04','2017-08-03 21:27:04','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26639,1,'2017-08-03 17:28:32','2017-08-03 21:28:32','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.4em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nJuly 2010–Present\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li><strong>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</strong></li>\r\n 	<li><strong>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</strong></li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li><strong>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</strong></li>\r\n 	<li><strong>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</strong></li>\r\n 	<li><strong>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</strong></li>\r\n 	<li><strong>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</strong></li>\r\n 	<li><strong>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</strong></li>\r\n 	<li><strong>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</strong></li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:28:32','2017-08-03 21:28:32','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26641,1,'2017-08-03 17:32:18','2017-08-03 21:32:18','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nHighlights\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.4em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nJuly 2010–Present\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li><strong>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</strong></li>\r\n 	<li><strong>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</strong></li>\r\n 	<li><strong>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</strong></li>\r\n 	<li><strong>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</strong></li>\r\n 	<li><strong>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</strong></li>\r\n 	<li><strong>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</strong></li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li><strong>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</strong></li>\r\n 	<li><strong>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</strong></li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:32:18','2017-08-03 21:32:18','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26643,1,'2017-08-03 17:36:09','2017-08-03 21:36:09','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nHighlights\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.4em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nJuly 2010–Present\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li><strong>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</strong></li>\r\n 	<li><strong>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</strong></li>\r\n 	<li><strong>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</strong></li>\r\n 	<li><strong>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</strong></li>\r\n 	<li><strong>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</strong></li>\r\n 	<li><strong>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</strong></li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nFreelance Creative Director\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li><strong>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</strong></li>\r\n 	<li><strong>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</strong></li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_text_color=\"#212121\" text_font=\"Roboto||||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nG2 direct &amp; digital, Associate Creative Director\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" header_line_height=\"1.5em\" text_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li><strong>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</strong></li>\r\n 	<li><strong>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</strong></li>\r\n 	<li><strong>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award. </strong></li>\r\n 	<li><strong>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations. </strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:36:09','2017-08-03 21:36:09','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26645,1,'2017-08-03 17:38:32','2017-08-03 21:38:32','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\nCreative Director</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nHighlights\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nJuly 2010–Present\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li><strong>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</strong></li>\n<li><strong>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</strong></li>\n<li><strong>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</strong></li>\n<li><strong>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</strong></li>\n<li><strong>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</strong></li>\n<li><strong>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</strong></li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nFreelance Creative Director\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li><strong>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</strong></li>\n<li><strong>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</strong></li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nG2 direct & digital, Associate Creative Director\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li><strong>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</strong></li>\n<li><strong>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</strong></li>\n<li><strong>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award. </strong></li>\n<li><strong>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations. </strong></li>\n</ul>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:38:32','2017-08-03 21:38:32','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26647,1,'2017-08-03 17:51:08','2017-08-03 21:51:08','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 17:51:08','2017-08-03 21:51:08','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26649,1,'2017-08-03 18:10:48','2017-08-03 22:10:48','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\nCreative Director</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|26px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct & digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy & Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:10:48','2017-08-03 22:10:48','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26651,1,'2017-08-03 18:21:07','2017-08-03 22:21:07','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|26px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_button _builder_version=\"3.0.65\" button_text=\"Download my resume\" button_url=\"#\" url_new_window=\"off\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1f497d\" button_letter_spacing=\"0\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_icon_placement=\"left\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_letter_spacing_hover=\"0\" button_border_radius=\"0\" button_font=\"Roboto||||\" button_use_icon=\"on\" button_on_hover=\"off\" button_border_radius_hover=\"0\" /][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:21:07','2017-08-03 22:21:07','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26652,1,'2017-08-03 18:22:07','2017-08-03 22:22:07','','JFeldman_AwardWinningCD','','inherit','open','closed','','jfeldman_awardwinningcd','','','2017-08-03 18:22:07','2017-08-03 22:22:07','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf',0,'attachment','application/pdf',0),(26653,1,'2017-08-03 18:24:33','2017-08-03 22:24:33','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|26px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_button _builder_version=\"3.0.65\" button_text=\"Download my resume\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpess/wp-content/uploads/JFeldman_AwardWinningCD.pdf\" url_new_window=\"off\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1f497d\" button_letter_spacing=\"0\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_icon_placement=\"left\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_letter_spacing_hover=\"0\" button_border_radius=\"0\" button_font=\"Roboto||||\" button_use_icon=\"on\" button_on_hover=\"off\" button_border_radius_hover=\"0\" /][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:24:33','2017-08-03 22:24:33','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26654,1,'2017-08-03 18:30:55','2017-08-03 22:30:55','','JFeldman_AwardWinningCD','','inherit','closed','closed','','26652-autosave-v1','','','2017-08-03 18:30:55','2017-08-03 22:30:55','',26652,'http://copyvet.globat.com/wordpress/26652-autosave-v1/',0,'revision','',0),(26655,1,'2017-08-03 18:34:34','2017-08-03 22:34:34','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|26px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column type=\"1_4\"][et_pb_button _builder_version=\"3.0.65\" button_text=\"Download my resume\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1f497d\" button_letter_spacing=\"0\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_icon_placement=\"left\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_letter_spacing_hover=\"0\" button_border_radius=\"0\" button_font=\"Roboto||||\" button_use_icon=\"on\" button_on_hover=\"off\" button_border_radius_hover=\"0\" module_class=\"et-download-button\" /][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:34:34','2017-08-03 22:34:34','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26657,1,'2017-08-03 18:36:29','2017-08-03 22:36:29','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\nCreative Director</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct & digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy & Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_color=\"#1f497d\" button_border_radius=\"0\" button_font=\"Roboto||||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" button_bg_color=\"rgba(0,0,0,0)\" button_text_size=\"14px\" button_border_width=\"0px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:36:29','2017-08-03 22:36:29','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26660,1,'2017-08-03 18:41:44','2017-08-03 22:41:44','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\nCreative Director</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct & digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy & Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:41:44','2017-08-03 22:41:44','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26661,1,'2017-08-03 18:42:34','2017-08-03 22:42:34','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\nCreative Director\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:42:34','2017-08-03 22:42:34','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26663,1,'2017-08-03 18:57:12','2017-08-03 22:57:12','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row custom_padding=\"84px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br /><span style=\"color: #9e9e9e;\">Creative Director<br /></span></p>\n<p><span style=\"color: #9e9e9e; font-size: small;\">917-699-3645<br /><a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a><br />LinkedIn<br />Twitter</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#9<span><span>99#</span></span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"66px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]July 2010&ndash;Present[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct & digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy & Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br /> Caples<br /> Creativity Magazine<br /> Mark (Cable and Telecommunications Association for Marketing)<br /> NY ADDY<br /> WebAward</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 18:57:12','2017-08-03 22:57:12','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26665,1,'2017-08-03 19:01:36','2017-08-03 23:01:36','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.65\" background_color=\"#ECEFF1\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br /><span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#9<span><span>99#</span></span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]July 2010–Present[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct & digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy & Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br /> Caples<br /> Creativity Magazine<br /> Mark (Cable and Telecommunications Association for Marketing)<br /> NY ADDY<br /> WebAward</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 19:01:36','2017-08-03 23:01:36','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26666,1,'2017-08-03 19:02:25','2017-08-03 23:02:25','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.65\" background_color=\"#ECEFF1\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n917-699-3645\r\n<a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a>\r\n<a href=\"http://www.linkedin.com/in/jeremyfeldman\" target=\"_blank\" rel=\"noopener noreferrer\">LinkedIn</a>\r\n<a href=\"https://twitter.com/copyvet\" target=\"_blank\" rel=\"noopener noreferrer\">Twitter</a>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 19:02:25','2017-08-03 23:02:25','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26668,1,'2017-08-03 19:06:55','2017-08-03 23:06:55','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br /><span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span><br /><span style=\"font-size: small;\"> <a href=\"http://www.linkedin.com/in/jeremyfeldman\" target=\"_blank\" rel=\"noopener noreferrer\">LinkedIn</a></span><br /><span style=\"font-size: small;\"> <a href=\"https://twitter.com/copyvet\" target=\"_blank\" rel=\"noopener noreferrer\">Twitter</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct & digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy & Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 19:06:55','2017-08-03 23:06:55','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26670,1,'2017-08-03 19:13:11','2017-08-03 23:13:11','[et_pb_section bb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n<span style=\"font-size: small;\"> <a href=\"http://www.linkedin.com/in/jeremyfeldman\" target=\"_blank\" rel=\"noopener noreferrer\">LinkedIn</a></span>\r\n<span style=\"font-size: small;\"> <a href=\"https://twitter.com/copyvet\" target=\"_blank\" rel=\"noopener noreferrer\">Twitter</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow _builder_version=\"3.0.65\" link_shape=\"circle\" url_new_window=\"on\" follow_button=\"off\" background_layout=\"light\"] [et_pb_social_media_follow_network social_network=\"linkedin\" skype_action=\"call\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" skype_action=\"call\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 19:13:11','2017-08-03 23:13:11','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26672,1,'2017-08-03 19:33:46','2017-08-03 23:33:46','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br /> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span><br /><span style=\"font-size: small;\"></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct & digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy & Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 19:33:46','2017-08-03 23:33:46','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26675,1,'2017-08-03 19:49:54','2017-08-03 23:49:54','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Highlights [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 19:49:54','2017-08-03 23:49:54','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26676,1,'2017-08-03 19:56:39','2017-08-03 23:56:39','[et_pb_section bb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] G2 direct &amp; digital, Associate Creative Director [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2003–April 2005 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Freelance Creative Director/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] September 2001–September 2003 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"] Lowe Lintas Advertising, Senior Copywriter [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 19:56:39','2017-08-03 23:56:39','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26678,1,'2017-08-03 20:10:37','2017-08-04 00:10:37','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"] <strong>Freelance Creative Director</strong> [/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Freelance Creative Director </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|25%||\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> G2 direct &amp; digital, Associate Creative Director </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]<p>Sept 2003&ndash;April 2005</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Freelance Creative Director/Copywriter </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]<p>Sept 2001&ndash;Sept 2003</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Lowe Lintas Advertising, Senior Copywriter</strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:10:37','2017-08-04 00:10:37','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26680,1,'2017-08-03 20:19:51','2017-08-04 00:19:51','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong>Atmosphere Proximity, Creative Director</strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Freelance Creative Director </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> G2 direct &amp; digital, Associate Creative Director </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]<p>Sept 2003&ndash;April 2005</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Freelance Creative Director/Copywriter </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]<p>Sept 2001&ndash;Sept 2003</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Lowe Lintas Advertising, Senior Copywriter</strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:19:51','2017-08-04 00:19:51','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26682,1,'2017-08-03 20:24:47','2017-08-04 00:24:47','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong>Atmosphere Proximity, Creative Director</strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Freelance Creative Director </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta &ndash; Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct &ndash; Brought Verizon&rsquo;s new branding to life in the B2B CRM space</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> G2 direct &amp; digital, Associate Creative Director </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]<p>Sept 2003&ndash;April 2005</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Freelance Creative Director/Copywriter </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]<p>Sept 2001&ndash;Sept 2003</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]<p><strong> Lowe Lintas Advertising, Senior Copywriter</strong></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:24:47','2017-08-04 00:24:47','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26684,1,'2017-08-03 20:26:47','2017-08-04 00:26:47','[et_pb_section bb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct &amp; digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|27px|0px\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"|25%||\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"3_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:26:47','2017-08-04 00:26:47','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26686,1,'2017-08-03 20:28:17','2017-08-04 00:28:17','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:28:17','2017-08-04 00:28:17','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26688,1,'2017-08-03 20:31:21','2017-08-04 00:31:21','[et_pb_section bb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct &amp; digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|30%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:31:21','2017-08-04 00:31:21','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26690,1,'2017-08-03 20:35:39','2017-08-04 00:35:39','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"][/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:35:39','2017-08-04 00:35:39','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26692,1,'2017-08-03 20:37:22','2017-08-04 00:37:22','[et_pb_section bb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct &amp; digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:37:22','2017-08-04 00:37:22','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26693,1,'2017-08-03 20:38:01','2017-08-04 00:38:01','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:38:01','2017-08-04 00:38:01','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26695,1,'2017-08-03 20:40:43','2017-08-04 00:40:43','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p>Jeremy Feldman<br />\n<span style=\"color: #9e9e9e;\">Creative Director</span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-03 20:40:43','2017-08-04 00:40:43','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26697,1,'2017-08-03 20:44:07','2017-08-04 00:44:07','','02-1','','inherit','open','closed','','02-1','','','2017-08-03 20:44:07','2017-08-04 00:44:07','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/02-1.png',0,'attachment','image/png',0),(26698,1,'2017-08-03 20:45:47','2017-08-04 00:45:47','','054','','inherit','open','closed','','054','','','2017-08-03 20:45:47','2017-08-04 00:45:47','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/054.jpg',0,'attachment','image/jpeg',0),(26699,1,'2017-08-03 20:46:49','2017-08-04 00:46:49','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_color=\"#ffffff\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"on\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" gutter_width=\"4\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"36\" text_text_color=\"#202020\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" max_width=\"480px\"]\r\n<p class=\"p1\"><span class=\"s1\">Have a project or an idea you’d like to collaborate with Hub? Please get in touch!</span></p>\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" custom_padding=\"40px|||\" padding_mobile=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_letter_spacing=\"1\" custom_margin=\"||0px|\"]\r\n\r\nEMAIL\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"20\" text_text_color=\"#7a7a7a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px|||\"]\r\n\r\n<span style=\"text-decoration: underline;\">email@hub.com</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_letter_spacing=\"1\" custom_margin=\"||0px|\"]\r\n\r\nOFFICE\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||on||\" text_font_size=\"20\" text_text_color=\"#7a7a7a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px|||\" text_line_height=\"1.5em\"]\r\n\r\n55 East 52nd Street 21st Floor New York, NY 122.\r\nTel: +2120 370 00 01\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form captcha=\"on\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"0\" title_font=\"Montserrat|on|||\" title_font_size=\"14\" title_text_color=\"#aaaaaa\" form_field_font=\"Montserrat|on|||\" form_field_text_color=\"#aaaaaa\" form_field_letter_spacing=\"1px\" use_border_color=\"on\" border_color=\"#d4d4d4\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#202020\" button_border_width=\"12\" button_border_color=\"#202020\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_bg_color_hover=\"#202020\" button_border_color_hover=\"#202020\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" button_text_size=\"16\"] [et_pb_contact_field field_title=\"NAME\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field][et_pb_contact_field field_title=\"EMAIL\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field][et_pb_contact_field field_title=\"MESSAGE\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 20:46:49','2017-08-04 00:46:49','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0);
INSERT INTO `wp_xyud_posts` VALUES (26702,1,'2017-08-03 20:53:28','2017-08-04 00:53:28','[et_pb_section fb_built=\"1\" background_color=\"#ffffff\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.47\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner padding_mobile=\"off\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.47\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"36\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<p>LET\'S CHAT ABOUT HOW I CAN HELP ADD VALUE TO YOUR ORGANIZATION.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" padding_mobile=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#7a7a7a\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form form_background_color=\"#ffffff\" _builder_version=\"3.0.65\" title_font=\"Montserrat|on|||\" title_font_size=\"14\" title_text_color=\"#aaaaaa\" form_field_font=\"Montserrat|on|||\" form_field_text_color=\"#aaaaaa\" form_field_letter_spacing=\"1px\" use_border_color=\"on\" border_color=\"#d4d4d4\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#202020\" button_border_width=\"12\" button_border_color=\"#202020\" button_border_radius=\"0\" button_letter_spacing=\"2\" button_font=\"Montserrat||||\" button_use_icon=\"off\" button_bg_color_hover=\"#202020\" button_border_color_hover=\"#202020\" button_border_radius_hover=\"0\" button_letter_spacing_hover=\"2\" module_id=\"et_pb_contact_form_0\" email=\"jeremy@jeremyfeldman.com\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 20:53:28','2017-08-04 00:53:28','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26705,1,'2017-08-03 21:19:24','2017-08-04 01:19:24','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner padding_mobile=\"off\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" padding_mobile=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form form_background_color=\"#1c508c\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" use_border_color=\"on\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\" module_id=\"et_pb_contact_form_0\" email=\"jeremy@jeremyfeldman.com\" form_field_line_height=\"1.3em\" input_border_radius=\"3px\" border_width=\"2px\" button_text_color_hover=\"#ff9335\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" admin_label=\"Contact Form\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" _builder_version=\"3.0.47\" field_background_color=\"#225296\" input_border_radius=\"6px\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" use_border_color=\"off\" form_field_letter_spacing=\"2px\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:19:24','2017-08-04 01:19:24','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26707,1,'2017-08-03 21:27:35','2017-08-04 01:27:35','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner padding_mobile=\"off\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" padding_mobile=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:27:35','2017-08-04 01:27:35','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26709,1,'2017-08-03 21:29:18','2017-08-04 01:29:18','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"0px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:29:18','2017-08-04 01:29:18','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26711,1,'2017-08-03 21:30:05','2017-08-04 01:30:05','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"10%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:30:05','2017-08-04 01:30:05','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26713,1,'2017-08-03 21:30:24','2017-08-04 01:30:24','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"107px||166px|\" padding_mobile=\"on\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"15%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:30:24','2017-08-04 01:30:24','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26715,1,'2017-08-03 21:32:57','2017-08-04 01:32:57','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"15%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:32:57','2017-08-04 01:32:57','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26716,1,'2017-08-03 21:33:25','2017-08-04 01:33:25','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"15%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:33:25','2017-08-04 01:33:25','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26718,1,'2017-08-03 21:33:52','2017-08-04 01:33:52','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\" custom_padding_phone=\"12%||10%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"15%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:33:52','2017-08-04 01:33:52','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26719,1,'2017-08-03 21:34:10','2017-08-04 01:34:10','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\" custom_padding_phone=\"14%||10%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"15%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#263238\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:34:10','2017-08-04 01:34:10','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26721,1,'2017-08-03 21:38:47','2017-08-04 01:38:47','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\" custom_padding_phone=\"14%||10%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"15%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#616161\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:38:47','2017-08-04 01:38:47','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26723,1,'2017-08-03 21:40:06','2017-08-04 01:40:06','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" _builder_version=\"3.0.65\" custom_padding_phone=\"14%||10%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"1px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"29px\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" _builder_version=\"3.0.65\" custom_padding_phone=\"15%|0px|0px|0px\" custom_padding_last_edited=\"on|phone\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#616161\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"EMAIL\" field_type=\"email\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" use_border_color=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-03 21:40:06','2017-08-04 01:40:06','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26726,1,'2017-08-03 21:48:27','2017-08-04 01:48:27','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||301px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"29px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-03 21:48:27','2017-08-04 01:48:27','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26730,1,'2017-08-03 22:09:53','2017-08-04 02:09:53','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|25%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><strong>HELLO,<br />\nI\'M JEREMY,<br />\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-03 22:09:53','2017-08-04 02:09:53','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26733,1,'2017-08-04 11:25:50','2017-08-04 15:25:50','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|25%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<strong>HELLO,\r\nI\'M JEREMY,\r\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span>\r\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]\r\n\r\nOver the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.\r\n\r\nLet me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.\r\n\r\nI hope you enjoy the work.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-04 11:25:50','2017-08-04 15:25:50','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26734,1,'2017-08-04 11:26:14','2017-08-04 15:26:14','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|25%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><strong>HELLO,<br />\nI\'M JEREMY,<br />\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-04 11:26:14','2017-08-04 15:26:14','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26737,1,'2017-08-04 11:34:37','2017-08-04 15:34:37','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"26%||26%|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><strong>HELLO,<br />\nI\'M JEREMY,<br />\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"26%|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-04 11:34:37','2017-08-04 15:34:37','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26739,1,'2017-08-04 11:35:54','2017-08-04 15:35:54','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"299px||301px|\" custom_padding_phone=\"17px||26px|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 11:35:54','2017-08-04 15:35:54','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26742,1,'2017-08-04 11:57:33','2017-08-04 15:57:33','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#616161\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 11:57:33','2017-08-04 15:57:33','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26743,1,'2017-08-04 11:58:55','2017-08-04 15:58:55','/* CAPTCHA */\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-04 11:58:55','2017-08-04 15:58:55','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26744,1,'2017-08-04 12:01:11','2017-08-04 16:01:11','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 60px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-04 12:01:11','2017-08-04 16:01:11','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26745,1,'2017-08-04 12:01:50','2017-08-04 16:01:50','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 50px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-04 12:01:50','2017-08-04 16:01:50','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26746,1,'2017-08-04 12:02:19','2017-08-04 16:02:19','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-04 12:02:19','2017-08-04 16:02:19','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26750,1,'2017-08-04 13:51:06','2017-08-04 17:51:06','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"20%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 13:51:06','2017-08-04 17:51:06','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26753,1,'2017-08-04 13:55:35','2017-08-04 17:55:35','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><strong>HELLO,<br />\nI\'M JEREMY,<br />\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I’ve worked with. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-04 13:55:35','2017-08-04 17:55:35','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26755,1,'2017-08-04 14:05:38','2017-08-04 18:05:38','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><strong>HELLO,<br />\nI\'M JEREMY,<br />\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Roboto Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]<p>Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</p>\n<p>Let me tell you some entertaining stories about a few of the brands I&rsquo;ve touched. It\'s been quite a ride.</p>\n<p>I hope you enjoy the work.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-04 14:05:38','2017-08-04 18:05:38','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26758,1,'2017-08-04 14:51:13','2017-08-04 18:51:13','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<strong>HELLO,\r\nI\'M JEREMY,\r\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span>\r\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\nOver the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.\r\n\r\nLet me tell you some entertaining stories about a few of the brands I’ve touched. It\'s been quite a ride.\r\n\r\nI hope you enjoy the work.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-04 14:51:13','2017-08-04 18:51:13','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26761,1,'2017-08-04 14:58:05','2017-08-04 18:58:05','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Microphone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><strong>HELLO,<br />\nI\'M JEREMY,<br />\n<span style=\"color: #ff9335;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335;\">WITH 20 YEARS\' EXPERIENCE</span></strong></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" background_layout=\"dark\"]<p>&nbsp;</p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I&rsquo;ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work&nbsp;</span>9</a></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-04 14:58:05','2017-08-04 18:58:05','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(26765,1,'2017-08-04 15:04:21','2017-08-04 19:04:21','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"20%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Home Page Button\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\" /][et_pb_text _builder_version=\"3.0.65\" background_layout=\"dark\" text_orientation=\"center\" text_font=\"eleganticons|on|||\" text_text_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nLET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 15:04:21','2017-08-04 19:04:21','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26767,1,'2017-08-04 15:12:35','2017-08-04 19:12:35','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"20%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Home Page Button\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\" /][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW 9</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 15:12:35','2017-08-04 19:12:35','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26769,1,'2017-08-04 15:14:31','2017-08-04 19:14:31','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"20%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Home Page Button\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\" /][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW 9</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 15:14:31','2017-08-04 19:14:31','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26770,1,'2017-08-04 15:15:15','2017-08-04 19:15:15','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"20%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Home Page Button\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\" /][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"20\" /][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW 9</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 15:15:15','2017-08-04 19:15:15','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26771,1,'2017-08-04 15:16:32','2017-08-04 19:16:32','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"20%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Home Page Button\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\" /][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"center\" border_style=\"solid\" text_font_size=\"36\" text_text_color=\"#ffffff\"]\r\n\r\n<strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW 9</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 15:16:32','2017-08-04 19:16:32','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26772,1,'2017-08-04 15:18:17','2017-08-04 19:18:17','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"20%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Home Page Button\" button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\" /][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"center\" border_style=\"solid\" text_font_size=\"36\" text_text_color=\"#ffffff\" text_font=\"eleganticons||||\"]\r\n\r\n<strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW 9</strong>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 15:18:17','2017-08-04 19:18:17','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26774,1,'2017-08-04 15:22:31','2017-08-04 19:22:31','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\" button_text=\"LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\" button_alignment=\"center\" background_layout=\"dark\" admin_label=\"Home Page Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"31px\" button_text_color=\"#ffffff\" button_border_width=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%24%%\" button_icon_color=\"#ffffff\" button_on_hover=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"rgba(255,147,53,0)\" button_letter_spacing_hover=\"2px\" button_text_size_phone=\"26px\" button_text_size_last_edited=\"on|tablet\" background_color=\"#7EBEC5\"][/et_pb_button][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" inline_fonts=\"Roboto\"]<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: normal; color: #ffffff;\"><strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW</strong> </span><strong>9</strong></a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 15:22:31','2017-08-04 19:22:31','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26776,1,'2017-08-04 16:22:09','2017-08-04 20:22:09','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" inline_fonts=\"Roboto\" background_layout=\"light\" border_style=\"solid\" header_font=\"eleganticons||||\" header_font_size=\"36px\" header_line_height=\"1.3em\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW</strong> <strong>9</strong></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:22:09','2017-08-04 20:22:09','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26778,1,'2017-08-04 16:31:47','2017-08-04 20:31:47','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"39px\" header_line_height=\"1.3em\" inline_fonts=\"Roboto,Happy Monkey\" admin_label=\"Home Page Headline\" header_letter_spacing_last_edited=\"on|phone\" header_line_height_last_edited=\"on|desktop\"]<h1><span style=\"color: #ffffff;\"><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW</strong> </span><strong><span style=\"font-size: xx-large;\">9</span></strong></a></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:31:47','2017-08-04 20:31:47','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26780,1,'2017-08-04 16:39:11','2017-08-04 20:39:11','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"39px\" header_line_height=\"1.3em\" inline_fonts=\"Roboto,Happy Monkey\" admin_label=\"Home Page Headline\" header_letter_spacing_last_edited=\"on|phone\" header_line_height_last_edited=\"on|phone\"]<h1><span style=\"color: #ffffff;\"><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW</strong> </span><span style=\"color: #e09900; font-size: xx-large;\"><strong>9</strong></span></a></span><span style=\"color: #e09900; font-size: xx-large;\"><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><strong></strong></a></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:39:11','2017-08-04 20:39:11','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26782,1,'2017-08-04 16:40:27','2017-08-04 20:40:27','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"39px\" header_line_height=\"1.3em\" inline_fonts=\"Roboto,Happy Monkey\" admin_label=\"Home Page Headline\" header_letter_spacing_last_edited=\"on|phone\" header_line_height_last_edited=\"on|phone\"]\r\n<h1><span style=\"color: #ffffff;\"><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW</strong> </span><span style=\"color: #e09900; font-size: xx-large;\"><strong>9</strong></span></a></span></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:40:27','2017-08-04 20:40:27','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26784,1,'2017-08-04 16:44:01','2017-08-04 20:44:01','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"39px\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:44:01','2017-08-04 20:44:01','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26786,1,'2017-08-04 16:48:40','2017-08-04 20:48:40','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"39px\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" header_font_size_last_edited=\"on|desktop\" header_line_height_phone=\"38px\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:48:40','2017-08-04 20:48:40','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26788,1,'2017-08-04 16:50:30','2017-08-04 20:50:30','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"8%||8%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"39px\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" header_font_size_last_edited=\"on|desktop\" header_line_height_phone=\"38px\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:50:30','2017-08-04 20:50:30','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26790,1,'2017-08-04 16:53:10','2017-08-04 20:53:10','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"39px\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" header_font_size_last_edited=\"on|desktop\" header_line_height_phone=\"38px\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 16:53:10','2017-08-04 20:53:10','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26791,1,'2017-08-04 16:53:55','2017-08-04 20:53:55','[et_pb_section fb_built=\"1\" background_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #9e9e9e;\">Creative Director</span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] July 2010–Present [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> G2 direct &amp; digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#28876c\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#9e9e9e\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#212121\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#616161\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1f497d\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#1f497d\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-04 16:53:55','2017-08-04 20:53:55','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26793,1,'2017-08-04 17:23:05','2017-08-04 21:23:05','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>Jeremy Feldman<br /><span style=\"color: #000055;\"><span color=\"rgba(255, 255, 255, 0)\" style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\"]<p><span style=\"font-size: small;\">917-699-3645</span><br /> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010&ndash;Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]<p><span style=\"color: #ff9335;\"><strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong></span></p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-04 17:23:05','2017-08-04 21:23:05','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26794,1,'2017-08-04 17:23:26','2017-08-04 21:23:26','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJeremy Feldman\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n<span style=\"color: rgba(255, 255, 255, 0);\">#999#</span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJuly 2010–Present\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct &amp; digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-04 17:23:26','2017-08-04 21:23:26','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26796,1,'2017-08-04 17:26:07','2017-08-04 21:26:07','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\"]<p><span style=\"font-size: small;\">917-699-3645</span><br />\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#1f497d\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010&ndash;Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-04 17:26:07','2017-08-04 21:26:07','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26798,1,'2017-08-04 17:35:58','2017-08-04 21:35:58','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\" button_border_color_hover=\"#5374ad\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" text_text_color=\"#FF9335\" inline_fonts=\"Roboto\"]<p><strong><span style=\"font-family: Roboto;\">Sun Chemical Branding</span></strong></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-04 17:35:58','2017-08-04 21:35:58','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26800,1,'2017-08-04 19:38:17','2017-08-04 23:38:17','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]\r\n\r\n<span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span>\r\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#616161\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 19:38:17','2017-08-04 23:38:17','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26801,1,'2017-08-04 19:39:36','2017-08-04 23:39:36','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#616161\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 19:39:36','2017-08-04 23:39:36','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26803,1,'2017-08-04 19:40:50','2017-08-04 23:40:50','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"37px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 19:40:50','2017-08-04 23:40:50','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26805,1,'2017-08-04 19:41:24','2017-08-04 23:41:24','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"34px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 19:41:24','2017-08-04 23:41:24','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26806,1,'2017-08-04 19:41:55','2017-08-04 23:41:55','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"33px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 19:41:55','2017-08-04 23:41:55','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26807,1,'2017-08-04 19:42:17','2017-08-04 23:42:17','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 19:42:17','2017-08-04 23:42:17','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26810,1,'2017-08-04 19:46:20','2017-08-04 23:46:20','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 19:46:20','2017-08-04 23:46:20','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26812,1,'2017-08-04 19:48:58','2017-08-04 23:48:58','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: xx-large;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-04 19:48:58','2017-08-04 23:48:58','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26813,1,'2017-08-04 19:52:26','2017-08-04 23:52:26','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\" button_border_color_hover=\"#5374ad\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"22px\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" text_text_color=\"#FF9335\" inline_fonts=\"Roboto\"]\r\n\r\n<strong><span style=\"font-family: Roboto;\">Sun Chemical Branding</span></strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-04 19:52:26','2017-08-04 23:52:26','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26814,1,'2017-08-04 19:52:55','2017-08-04 23:52:55','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<strong><span style=\"font-family: Roboto;\">Sun Chemical Branding</span></strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-04 19:52:55','2017-08-04 23:52:55','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26816,1,'2017-08-04 19:53:58','2017-08-04 23:53:58','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]\r\n\r\n<span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span>\r\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#1c508c\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ffffff\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#1F497D\" button_bg_color=\"#cfd8dc\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#ff9335\" button_bg_color_hover=\"#616161\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"2\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 19:53:58','2017-08-04 23:53:58','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26818,1,'2017-08-04 20:01:46','2017-08-05 00:01:46','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#5374ad\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ECEFF1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 20:01:46','2017-08-05 00:01:46','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26820,1,'2017-08-04 20:06:55','2017-08-05 00:06:55','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"10%||10%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#5374ad\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ECEFF1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\" field_background_color=\"#5374ad\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 20:06:55','2017-08-05 00:06:55','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26822,1,'2017-08-04 20:08:00','2017-08-05 00:08:00','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#5374ad\" input_border_radius=\"3px\" admin_label=\"Contact Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#ECEFF1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\" field_background_color=\"#5374ad\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 20:08:00','2017-08-05 00:08:00','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26824,1,'2017-08-04 20:09:34','2017-08-05 00:09:34','[et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]\r\n\r\n<span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span>\r\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" custom_padding=\"40px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#5374ad\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\" captcha=\"on\" use_redirect=\"off\" border_style=\"solid\" button_icon_placement=\"right\"] [et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\" field_background_color=\"#5374ad\"][/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 20:09:34','2017-08-05 00:09:34','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26826,1,'2017-08-04 20:19:14','2017-08-05 00:19:14','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" custom_padding=\"37.5625px|0px|61px|0px\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#5374ad\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#225296\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#5374ad\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 20:19:14','2017-08-05 00:19:14','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26828,1,'2017-08-04 20:21:20','2017-08-05 00:21:20','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" custom_padding=\"37.5625px|0px|61px|0px\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]\r\n\r\n<u>jeremy@jeremyfeldman.com</u>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-04 20:21:20','2017-08-05 00:21:20','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26832,1,'2017-08-04 20:30:24','2017-08-05 00:30:24','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<strong><span style=\"font-family: Roboto;\">Sun Chemical Branding</span></strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" src=\"https://vimeo.com/228445312\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-04 20:30:24','2017-08-05 00:30:24','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26833,1,'2017-08-04 20:35:55','2017-08-05 00:35:55','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<strong><span style=\"font-family: Roboto;\">Sun Chemical Branding</span></strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-04 20:35:55','2017-08-05 00:35:55','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26835,1,'2017-08-04 20:40:18','2017-08-05 00:40:18','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<strong><span style=\"font-family: Roboto;\">Sun Chemical Branding</span></strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video _builder_version=\"3.0.65\" src=\"https://vimeo.com/228445312\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-04 20:40:18','2017-08-05 00:40:18','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26837,1,'2017-08-04 20:42:00','2017-08-05 00:42:00','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"Sun Chemical\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<strong><span style=\"font-family: Roboto;\">Sun Chemical Branding</span></strong>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" _builder_version=\"3.0.65\" play_icon_color=\"#ECEFF1\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-04 20:42:00','2017-08-05 00:42:00','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26838,1,'2017-08-07 09:44:08','2017-08-07 13:44:08','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"SUN CHEMICAL\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]<p>SUN CHEMICAL BRANDING</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 09:44:08','2017-08-07 13:44:08','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26841,1,'2017-08-07 10:20:26','2017-08-07 14:20:26','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"SUN CHEMICAL\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.05-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.51-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.10.30-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 10:20:26','2017-08-07 14:20:26','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26843,1,'2017-08-07 10:25:52','2017-08-07 14:25:52','','chewFeld_adcepts_Page_2','','inherit','open','closed','','chewfeld_adcepts_page_2','','','2017-08-07 10:25:52','2017-08-07 14:25:52','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg',0,'attachment','image/jpeg',0),(26844,1,'2017-08-07 10:25:59','2017-08-07 14:25:59','','chewFeld_adcepts_Page_3','','inherit','open','closed','','chewfeld_adcepts_page_3','','','2017-08-07 10:25:59','2017-08-07 14:25:59','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg',0,'attachment','image/jpeg',0),(26847,1,'2017-08-07 10:31:03','2017-08-07 14:31:03','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"SUN CHEMICAL\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_1.jpg\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 10:31:03','2017-08-07 14:31:03','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26849,1,'2017-08-07 10:33:35','2017-08-07 14:33:35','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"SUN CHEMICAL\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image _builder_version=\"3.0.65\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"off\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 10:33:35','2017-08-07 14:33:35','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26850,1,'2017-08-07 10:34:46','2017-08-07 14:34:46','','Sun_01','','inherit','open','closed','','sun_01','','','2017-08-07 10:34:46','2017-08-07 14:34:46','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/Sun_01.jpg',0,'attachment','image/jpeg',0),(26851,1,'2017-08-07 10:35:54','2017-08-07 14:35:54','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"SUN CHEMICAL\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image _builder_version=\"3.0.65\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 10:35:54','2017-08-07 14:35:54','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26853,1,'2017-08-07 11:01:07','2017-08-07 15:01:07','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"SUN CHEMICAL\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image _builder_version=\"3.0.65\" src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 11:01:07','2017-08-07 15:01:07','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26855,1,'2017-08-07 17:52:43','2017-08-07 21:52:43','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size: 34px;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-07 17:52:43','2017-08-07 21:52:43','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26857,1,'2017-08-07 17:55:44','2017-08-07 21:55:44','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size=\"+2;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-07 17:55:44','2017-08-07 21:55:44','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26859,1,'2017-08-07 17:58:40','2017-08-07 21:58:40','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size=\"+2;\"><strong><span style=\"color: #8bc34a; font-size:\"+2;\">9</span></strong></span></span></a></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-07 17:58:40','2017-08-07 21:58:40','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26861,1,'2017-08-07 18:00:34','2017-08-07 22:00:34','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size=\"+2\";\"><strong><span style=\"color: #8bc34a; font-size:\"+2;\">9</span></strong></span></span></a></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-07 18:00:34','2017-08-07 22:00:34','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26862,1,'2017-08-07 18:01:23','2017-08-07 22:01:23','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-size=\"+4\";\"><strong><span style=\"color: #8bc34a; font-size:\"+4;\">9</span></strong></span></span></a></h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-07 18:01:23','2017-08-07 22:01:23','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26865,1,'2017-08-07 20:52:44','2017-08-08 00:52:44','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"SUN CHEMICAL\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22WORKING FOR YOU%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"36px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" _builder_version=\"3.0.65\" animation=\"off\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" _builder_version=\"3.0.65\" animation=\"off\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" _builder_version=\"3.0.65\" animation=\"off\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" _builder_version=\"3.0.65\" animation=\"off\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 20:52:44','2017-08-08 00:52:44','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26868,1,'2017-08-07 21:03:44','2017-08-08 01:03:44','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\"]<p><span style=\"font-size: small;\">917-699-3645</span><br /><br /> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"font-size: small;\"></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010–Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-07 21:03:44','2017-08-08 01:03:44','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26870,1,'2017-08-07 21:04:26','2017-08-08 01:04:26','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\"]<p><span style=\"font-size: small;\">917-699-3645</span><br /><br /> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"font-size: small;\"></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" _builder_version=\"3.0.65\" background_layout=\"dark\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010–Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-07 21:04:26','2017-08-08 01:04:26','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(26873,1,'2017-08-07 21:34:54','2017-08-08 01:34:54','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-07 21:34:54','2017-08-08 01:34:54','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26875,1,'2017-08-07 21:43:20','2017-08-08 01:43:20','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#ffffff\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-07 21:43:20','2017-08-08 01:43:20','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(26876,1,'2017-08-07 21:44:46','2017-08-08 01:44:46','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 50px\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:44:46','2017-08-08 01:44:46','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26877,1,'2017-08-07 21:45:34','2017-08-08 01:45:34','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 50px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:45:34','2017-08-08 01:45:34','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26878,1,'2017-08-07 21:45:50','2017-08-08 01:45:50','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 40px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:45:50','2017-08-08 01:45:50','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26879,1,'2017-08-07 21:46:06','2017-08-08 01:46:06','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 38px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:46:06','2017-08-08 01:46:06','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26880,1,'2017-08-07 21:46:29','2017-08-08 01:46:29','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 36px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:46:29','2017-08-08 01:46:29','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26881,1,'2017-08-07 21:46:54','2017-08-08 01:46:54','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 35px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:46:54','2017-08-08 01:46:54','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26882,1,'2017-08-07 21:47:11','2017-08-08 01:47:11','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 34px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:47:11','2017-08-08 01:47:11','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26883,1,'2017-08-07 21:47:35','2017-08-08 01:47:35','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-07 21:47:35','2017-08-08 01:47:35','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(26884,1,'2017-08-08 10:40:17','2017-08-08 14:40:17','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-08 10:40:17','2017-08-08 14:40:17','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26886,1,'2017-08-08 11:13:23','2017-08-08 15:13:23','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:13:23','2017-08-08 15:13:23','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26888,1,'2017-08-08 11:15:26','2017-08-08 15:15:26','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_post_title _builder_version=\"3.0.65\"][/et_pb_post_title][et_pb_text _builder_version=\"3.0.65\"][/et_pb_text][et_pb_button _builder_version=\"3.0.65\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:15:26','2017-08-08 15:15:26','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26890,1,'2017-08-08 11:18:35','2017-08-08 15:18:35','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.65\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time</p>\r\n[/et_pb_text][et_pb_button _builder_version=\"3.0.65\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:18:35','2017-08-08 15:18:35','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26892,1,'2017-08-08 11:25:13','2017-08-08 15:25:13','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" max_width=\"500px\"]<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>[/et_pb_text][et_pb_button _builder_version=\"3.0.65\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:25:13','2017-08-08 15:25:13','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26894,1,'2017-08-08 11:27:06','2017-08-08 15:27:06','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" max_width=\"500px\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button _builder_version=\"3.0.65\" background_color=\"#7EBEC5\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_border_radius=\"2\" button_letter_spacing=\"0\" button_font=\"Roboto||||\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:27:06','2017-08-08 15:27:06','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26896,1,'2017-08-08 11:32:27','2017-08-08 15:32:27','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\"]<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\n<p style=\"text-align: center;\"></p>[/et_pb_text][et_pb_button button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" background_color=\"#7EBEC5\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_bg_color=\"#1f497d\" button_text_color_hover=\"#bef67a\" button_border_radius_hover=\"4px\" button_bg_color_hover=\"#5374ad\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:32:27','2017-08-08 15:32:27','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26897,1,'2017-08-08 11:33:48','2017-08-08 15:33:48','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" background_color=\"#7EBEC5\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_bg_color=\"#1f497d\" button_text_color_hover=\"#bef67a\" button_border_radius_hover=\"4px\" button_bg_color_hover=\"#5374ad\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:33:48','2017-08-08 15:33:48','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26899,1,'2017-08-08 11:36:09','2017-08-08 15:36:09','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Sun Chemical Header CTA\" title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" background_color=\"#7EBEC5\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_bg_color=\"#1f497d\" button_text_color_hover=\"#bef67a\" button_border_radius_hover=\"4px\" button_bg_color_hover=\"#5374ad\" button_url=\"#\" url_new_window=\"off\" background_layout=\"light\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:36:09','2017-08-08 15:36:09','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26901,1,'2017-08-08 11:38:37','2017-08-08 15:38:37','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"|||\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_cta title=\"THE COLOR OF INNOVATION\" button_url=\"#portfolio_content\" button_text=\"SEE THE %22SUN CHEMICAL%22 BRAND CAMPAIGN\" background_color=\"rgba(255,255,255,0.49)\" background_layout=\"light\" max_width=\"550px\" admin_label=\"Sun Chemical Header CTA\" _builder_version=\"3.0.65\" header_font=\"Roboto|on|||\" header_font_size=\"32px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|desktop\" body_font=\"Roboto||||\" body_font_size=\"14px\" body_font_size_phone=\"12px\" body_font_size_last_edited=\"on|desktop\" body_line_height_phone=\"1.6em\" body_line_height_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"|||\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"1px\" button_border_color=\"#002250\" button_border_radius=\"4px\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"16px\" button_text_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><strong>Once upon a time there was a company that lkadfj lkajsfd lkasfd ;ljafdljkadsf ;lkjasfdljk lasjf ;lasjflkjf ;laksdfj</strong></p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\"]<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\n<p style=\"text-align: center;\"></p>[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:38:37','2017-08-08 15:38:37','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26903,1,'2017-08-08 11:39:28','2017-08-08 15:39:28','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:39:28','2017-08-08 15:39:28','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26904,1,'2017-08-08 11:40:51','2017-08-08 15:40:51','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:40:51','2017-08-08 15:40:51','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26906,1,'2017-08-08 11:41:58','2017-08-08 15:41:58','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\"]<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"31px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:41:58','2017-08-08 15:41:58','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26908,1,'2017-08-08 11:42:40','2017-08-08 15:42:40','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\"]<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"31px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 11:42:40','2017-08-08 15:42:40','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26909,1,'2017-08-08 11:45:01','2017-08-08 15:45:01','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-08 11:45:01','2017-08-08 15:45:01','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26911,1,'2017-08-08 11:48:19','2017-08-08 15:48:19','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-08 11:48:19','2017-08-08 15:48:19','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(26913,1,'2017-08-08 12:12:14','2017-08-08 16:12:14','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text max_width=\"500px\" admin_label=\"Portfolio Header &amp; Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"31px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:12:14','2017-08-08 16:12:14','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26915,1,'2017-08-08 12:18:19','2017-08-08 16:18:19','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"24px\" text_font_size=\"16px\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"12px\" text_line_height_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\"]<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"15px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:18:19','2017-08-08 16:18:19','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26916,1,'2017-08-08 12:20:30','2017-08-08 16:20:30','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"24px\" text_font_size=\"16px\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"12px\" text_line_height_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" background_layout=\"light\" text_orientation=\"center\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><strong>INNOVATION HAS A COLOR</strong></h1>\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"15px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:20:30','2017-08-08 16:20:30','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26917,1,'2017-08-08 12:21:53','2017-08-08 16:21:53','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"24px\" text_font_size=\"16px\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"12px\" text_line_height_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" background_layout=\"light\" text_orientation=\"center\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 24pt;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_last_edited=\"on|desktop\" header_font_size_phone=\"24px\" text_font_size=\"16px\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"12px\" text_line_height_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" background_layout=\"light\" text_orientation=\"center\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" button_text_size_last_edited=\"on|desktop\" button_text_size_phone=\"15px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:21:53','2017-08-08 16:21:53','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26919,1,'2017-08-08 12:25:06','2017-08-08 16:25:06','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:25:06','2017-08-08 16:25:06','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26921,1,'2017-08-08 12:27:10','2017-08-08 16:27:10','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.6em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\"><span style=\"font-size: 24pt; color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:27:10','2017-08-08 16:27:10','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26922,1,'2017-08-08 12:28:06','2017-08-08 16:28:06','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.6em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" background_layout=\"light\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 12pt; color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:28:06','2017-08-08 16:28:06','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26923,1,'2017-08-08 12:30:11','2017-08-08 16:30:11','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.6em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" background_layout=\"light\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:30:11','2017-08-08 16:30:11','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26925,1,'2017-08-08 12:31:39','2017-08-08 16:31:39','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.6em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:31:39','2017-08-08 16:31:39','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26927,1,'2017-08-08 12:32:26','2017-08-08 16:32:26','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:32:26','2017-08-08 16:32:26','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26929,1,'2017-08-08 12:32:49','2017-08-08 16:32:49','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.2em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:32:49','2017-08-08 16:32:49','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26930,1,'2017-08-08 12:33:29','2017-08-08 16:33:29','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header & Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"31px|0px|0px|0px\" custom_padding_phone=\"4%|0px|0px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:33:29','2017-08-08 16:33:29','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26932,1,'2017-08-08 12:39:39','2017-08-08 16:39:39','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Header &amp; Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:39:39','2017-08-08 16:39:39','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26933,1,'2017-08-08 12:43:42','2017-08-08 16:43:42','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" background_layout=\"light\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_text admin_label=\"Portfolio Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" background_layout=\"light\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:43:42','2017-08-08 16:43:42','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26934,1,'2017-08-08 12:44:34','2017-08-08 16:44:34','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" background_layout=\"light\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_text admin_label=\"Portfolio Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" background_layout=\"light\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"2\" /][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:44:34','2017-08-08 16:44:34','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26936,1,'2017-08-08 12:47:21','2017-08-08 16:47:21','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.65\" height=\"12\"][/et_pb_divider][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_divider height=\"12\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:47:21','2017-08-08 16:47:21','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26937,1,'2017-08-08 12:48:10','2017-08-08 16:48:10','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_divider _builder_version=\"3.0.65\" height=\"12\"][/et_pb_divider][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"1%||1%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_divider height=\"12\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:48:10','2017-08-08 16:48:10','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26939,1,'2017-08-08 12:48:28','2017-08-08 16:48:28','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"1%||1%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:48:28','2017-08-08 16:48:28','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26941,1,'2017-08-08 12:51:04','2017-08-08 16:51:04','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"||4%|\" custom_margin_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:51:04','2017-08-08 16:51:04','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26943,1,'2017-08-08 12:51:26','2017-08-08 16:51:26','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"4%||4%|\" custom_margin_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 12:51:26','2017-08-08 16:51:26','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26946,1,'2017-08-08 13:03:21','2017-08-08 17:03:21','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/Sun-Chemical-Mosaic-Wall.jpg\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"||2%|\" custom_margin_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:03:21','2017-08-08 17:03:21','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26948,1,'2017-08-08 13:20:27','2017-08-08 17:20:27','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"||2%|\" custom_margin_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:20:27','2017-08-08 17:20:27','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26950,1,'2017-08-08 13:22:05','2017-08-08 17:22:05','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||2%|\" background_layout=\"dark\" text_text_color=\"#eceff1\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:22:05','2017-08-08 17:22:05','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26952,1,'2017-08-08 13:25:12','2017-08-08 17:25:12','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||2%|\" background_layout=\"dark\" text_text_color=\"#eceff1\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:25:12','2017-08-08 17:25:12','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26953,1,'2017-08-08 13:26:00','2017-08-08 17:26:00','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Copy\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||2%|\" background_layout=\"dark\" text_text_color=\"#eceff1\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" height=\"10\" hide_on_mobile=\"on\" /][et_pb_text admin_label=\"Portfolio Header\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:26:00','2017-08-08 17:26:00','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26955,1,'2017-08-08 13:33:36','2017-08-08 17:33:36','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||2%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"119px||115px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"10\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Header\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:33:36','2017-08-08 17:33:36','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26957,1,'2017-08-08 13:33:56','2017-08-08 17:33:56','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||2%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"119px||115px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Header\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"28px\" text_font_size_phone=\"21px\" text_font_size_last_edited=\"on|phone\" text_line_height_phone=\"1.1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]\r\n<p style=\"text-align: center;\"><span style=\"color: #212121;\"><strong>INNOVATION HAS A COLOR</strong></span></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:33:56','2017-08-08 17:33:56','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26958,1,'2017-08-08 13:35:38','2017-08-08 17:35:38','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||2%|\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||2%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:35:38','2017-08-08 17:35:38','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26960,1,'2017-08-08 13:40:08','2017-08-08 17:40:08','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"186px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||4%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:40:08','2017-08-08 17:40:08','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26962,1,'2017-08-08 13:41:58','2017-08-08 17:41:58','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"180px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"16px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||4%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:41:58','2017-08-08 17:41:58','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26964,1,'2017-08-08 13:42:47','2017-08-08 17:42:47','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"180px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||4%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:42:47','2017-08-08 17:42:47','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26966,1,'2017-08-08 13:43:16','2017-08-08 17:43:16','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"180px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||4%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:43:16','2017-08-08 17:43:16','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26967,1,'2017-08-08 13:44:09','2017-08-08 17:44:09','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||4%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 13:44:09','2017-08-08 17:44:09','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26970,1,'2017-08-08 14:52:39','2017-08-08 18:52:39','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||4%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 14:52:39','2017-08-08 18:52:39','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26971,1,'2017-08-08 14:55:28','2017-08-08 18:55:28','[et_pb_button button_url=\"#portfolio_content\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" button_text_size_phone=\"15px\" button_text_size_last_edited=\"on|desktop\" background_color=\"#7EBEC5\" saved_tabs=\"all\" url_new_window=\"off\" background_layout=\"light\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" template_type=\"module\" /]','Button Test 1','','publish','closed','closed','','button-test-1','','','2017-08-08 14:55:28','2017-08-08 18:55:28','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/button-test-1/',0,'et_pb_layout','',0),(26972,1,'2017-08-08 14:56:13','2017-08-08 18:56:13','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"550px\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||4%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_url=\"#\" url_new_window=\"off\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 14:56:13','2017-08-08 18:56:13','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26974,1,'2017-08-08 15:02:41','2017-08-08 19:02:41','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:02:41','2017-08-08 19:02:41','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26975,1,'2017-08-08 15:03:23','2017-08-08 19:03:23','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"||1%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:03:23','2017-08-08 19:03:23','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26977,1,'2017-08-08 15:03:40','2017-08-08 19:03:40','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"||2%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:03:40','2017-08-08 19:03:40','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26979,1,'2017-08-08 15:03:59','2017-08-08 19:03:59','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"||3%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:03:59','2017-08-08 19:03:59','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26981,1,'2017-08-08 15:04:32','2017-08-08 19:04:32','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"3%||3%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:04:32','2017-08-08 19:04:32','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26983,1,'2017-08-08 15:04:59','2017-08-08 19:04:59','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"0px||3%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:04:59','2017-08-08 19:04:59','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26985,1,'2017-08-08 15:05:33','2017-08-08 19:05:33','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"3%|||\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"0px||3%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:05:33','2017-08-08 19:05:33','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26987,1,'2017-08-08 15:06:31','2017-08-08 19:06:31','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"4%|||\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"0px||3%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:06:31','2017-08-08 19:06:31','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26989,1,'2017-08-08 15:06:58','2017-08-08 19:06:58','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"10%|||\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"0px||3%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:06:58','2017-08-08 19:06:58','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26991,1,'2017-08-08 15:08:39','2017-08-08 19:08:39','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"10%|||\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||6%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:08:39','2017-08-08 19:08:39','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26993,1,'2017-08-08 15:10:39','2017-08-08 19:10:39','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\" padding_bottom_1=\"0px\" padding_1_last_edited=\"on|desktop\" padding_1_phone=\"||10%|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||10%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"10%|||\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||6%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:10:39','2017-08-08 19:10:39','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26994,1,'2017-08-08 15:11:05','2017-08-08 19:11:05','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\" padding_bottom_1=\"0px\" padding_1_last_edited=\"on|desktop\" padding_1_phone=\"||12%|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"10%|||\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||6%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"] SUN CHEMICAL BRANDING [/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:11:05','2017-08-08 19:11:05','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26997,1,'2017-08-08 15:16:46','2017-08-08 19:16:46','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\" padding_bottom_1=\"0px\" padding_1_last_edited=\"on|desktop\" padding_1_phone=\"||12%|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"10%|||\"]<p>THE COLOR OF INNOVATION</p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||6%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#FF9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]<p>SUN CHEMICAL BRANDING</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:16:46','2017-08-08 19:16:46','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(26999,1,'2017-08-08 15:19:16','2017-08-08 19:19:16','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.65\" padding_bottom_1=\"0px\" padding_1_last_edited=\"on|desktop\" padding_1_phone=\"||12%|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_last_edited=\"on|desktop\" custom_padding_phone=\"10%|||\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px||6%|\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" button_use_icon=\"off\" background_color=\"#7EBEC5\" custom_button=\"on\" button_bg_color=\"#1f497d\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" module_id=\"Portfolio–Subhead\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:19:16','2017-08-08 19:19:16','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27001,1,'2017-08-08 15:20:02','2017-08-08 19:20:02','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"portfolio_content\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:20:02','2017-08-08 19:20:02','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27003,1,'2017-08-08 15:21:39','2017-08-08 19:21:39','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"Portfolio_Subhead\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]<p>SUN CHEMICAL BRANDING</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:21:39','2017-08-08 19:21:39','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27005,1,'2017-08-08 15:22:42','2017-08-08 19:22:42','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]<p>SUN CHEMICAL BRANDING</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:22:42','2017-08-08 19:22:42','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27006,1,'2017-08-08 15:25:05','2017-08-08 19:25:05','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"22px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" module_id=\"Portfolio–Subhead\" hide_on_mobile=\"on\" /][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:25:05','2017-08-08 19:25:05','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27008,1,'2017-08-08 15:26:13','2017-08-08 19:26:13','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"350px|0px|350px|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 15:26:13','2017-08-08 19:26:13','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27011,1,'2017-08-08 16:02:42','2017-08-08 20:02:42','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 16:02:42','2017-08-08 20:02:42','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27013,1,'2017-08-08 16:04:46','2017-08-08 20:04:46','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\" background_repeat=\"repeat\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 16:04:46','2017-08-08 20:04:46','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27014,1,'2017-08-08 16:05:40','2017-08-08 20:05:40','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/07/BS_background.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 16:05:40','2017-08-08 20:05:40','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27016,1,'2017-08-08 21:44:55','2017-08-09 01:44:55','','Bs_Background_8_8','','inherit','open','closed','','bs_background_8_8','','','2017-08-08 21:44:55','2017-08-09 01:44:55','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif',0,'attachment','image/gif',0),(27017,1,'2017-08-08 21:45:34','2017-08-09 01:45:34','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-08 21:45:34','2017-08-09 01:45:34','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27020,1,'2017-08-09 11:55:33','2017-08-09 15:55:33','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 11:55:33','2017-08-09 15:55:33','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27021,1,'2017-08-09 11:59:08','2017-08-09 15:59:08','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-09 11:59:08','2017-08-09 15:59:08','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27022,1,'2017-08-09 12:04:12','2017-08-09 16:04:12','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n<p><span style=\"font-size: small;\"></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010–Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:04:12','2017-08-09 16:04:12','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27024,1,'2017-08-09 12:12:32','2017-08-09 16:12:32','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n<p><span style=\"color: rgba(255, 255, 255, 0);\">#999#</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px||0px|\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010–Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:12:32','2017-08-09 16:12:32','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27025,1,'2017-08-09 12:13:30','2017-08-09 16:13:30','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px||0px|\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010–Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:13:30','2017-08-09 16:13:30','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27027,1,'2017-08-09 12:16:35','2017-08-09 16:16:35','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px||0px|\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||3%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010–Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:16:35','2017-08-09 16:16:35','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27029,1,'2017-08-09 12:19:07','2017-08-09 16:19:07','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px||0px|\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||3%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]<p>July 2010–Present</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2010–July 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] April 2005–April 2010 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] June 1996–July 2001 [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:19:07','2017-08-09 16:19:07','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27030,1,'2017-08-09 12:20:14','2017-08-09 16:20:14','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px||0px|\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"||3%|\"]\r\n\r\n<p><span style=\"font-size: small;\">917-699-3645</span></p>\r\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n<ul>\r\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n<ul>\r\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n<ul>\r\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n<ul>\r\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n<ul>\r\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\n<p>Burke Award (J&J)<br />\r\nCaples<br />\r\nCreativity Magazine<br />\r\nMark (Cable and Telecommunications Association for Marketing)<br />\r\nNY ADDY<br />\r\nWebAward</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:20:14','2017-08-09 16:20:14','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27032,1,'2017-08-09 12:28:56','2017-08-09 16:28:56','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|20%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:28:56','2017-08-09 16:28:56','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27034,1,'2017-08-09 12:29:47','2017-08-09 16:29:47','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|15%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|20%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:29:47','2017-08-09 16:29:47','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27036,1,'2017-08-09 12:30:10','2017-08-09 16:30:10','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|10%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|20%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:30:10','2017-08-09 16:30:10','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27038,1,'2017-08-09 12:30:38','2017-08-09 16:30:38','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|20%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:30:38','2017-08-09 16:30:38','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27039,1,'2017-08-09 12:31:19','2017-08-09 16:31:19','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:31:19','2017-08-09 16:31:19','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27041,1,'2017-08-09 12:32:55','2017-08-09 16:32:55','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:32:55','2017-08-09 16:32:55','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27043,1,'2017-08-09 12:34:45','2017-08-09 16:34:45','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:34:45','2017-08-09 16:34:45','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0);
INSERT INTO `wp_xyud_posts` VALUES (27045,1,'2017-08-09 12:35:48','2017-08-09 16:35:48','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:35:48','2017-08-09 16:35:48','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27047,1,'2017-08-09 12:37:05','2017-08-09 16:37:05','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:37:05','2017-08-09 16:37:05','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27049,1,'2017-08-09 12:38:06','2017-08-09 16:38:06','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|0%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|10%||\" custom_margin_phone=\"|25%||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 12:38:06','2017-08-09 16:38:06','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27051,1,'2017-08-09 13:12:48','2017-08-09 17:12:48','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 13:12:48','2017-08-09 17:12:48','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27052,1,'2017-08-09 13:45:30','2017-08-09 17:45:30','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\nTHE COLOR OF INNOVATION\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-09 13:45:30','2017-08-09 17:45:30','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27053,1,'2017-08-09 14:54:14','2017-08-09 18:54:14','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\" template_type=\"section\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\n\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home Page – No Typing Effect','','publish','closed','closed','','home-page-no-typing-effect','','','2017-08-09 14:54:14','2017-08-09 18:54:14','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/home-page-no-typing-effect/',0,'et_pb_layout','',0),(27055,1,'2017-08-09 15:11:04','2017-08-09 19:11:04','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES], &#x27;text&#x27;,[&#x27;#fff&#x27;], [&#x27;ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#FF9335&#x27;], [&#x27;9&#x27;], &#x27;text&#x27;,[&#x27;#FF9335&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Khula:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Robato;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:11:04','2017-08-09 19:11:04','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27057,1,'2017-08-09 15:13:09','2017-08-09 19:13:09','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES], &#x27;text&#x27;,[&#x27;#fff&#x27;], [&#x27;ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#FF9335&#x27;], [&#x27;9&#x27;], &#x27;text&#x27;,[&#x27;#FF9335&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Khula:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Robato;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:13:09','2017-08-09 19:13:09','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27058,1,'2017-08-09 15:14:24','2017-08-09 19:14:24','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Khula:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Robato;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:14:24','2017-08-09 19:14:24','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27059,1,'2017-08-09 15:16:06','2017-08-09 19:16:06','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\n\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Khula:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Robato;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home Page Copyvet','','publish','closed','closed','','home-page-copyvet','','','2017-08-09 15:16:06','2017-08-09 19:16:06','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/home-page-copyvet/',0,'et_pb_layout','',0),(27060,1,'2017-08-09 15:16:23','2017-08-09 19:16:23','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Khula:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Robato;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:16:23','2017-08-09 19:16:23','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27061,1,'2017-08-09 15:17:56','2017-08-09 19:17:56','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Khula:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Robato;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:17:56','2017-08-09 19:17:56','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27062,1,'2017-08-09 15:20:14','2017-08-09 19:20:14','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Robato:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Robato;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:3em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:20:14','2017-08-09 19:20:14','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27063,1,'2017-08-09 15:22:49','2017-08-09 19:22:49','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 120)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:22:49','2017-08-09 19:22:49','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27064,1,'2017-08-09 15:26:42','2017-08-09 19:26:42','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 160)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:26:42','2017-08-09 19:26:42','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27065,1,'2017-08-09 15:27:44','2017-08-09 19:27:44','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.65\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#x27;console-container&#x27;&gt;&lt;span id=&#x27;text&#x27;&gt;&lt;/span&gt;&lt;div class=&#x27;console-underscore&#x27; id=&#x27;console&#x27;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#fff&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:27:44','2017-08-09 19:27:44','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27067,1,'2017-08-09 15:29:53','2017-08-09 19:29:53','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"10%||10%|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#039;console-container&#039;&gt;&lt;span id=&#039;text&#039;&gt;&lt;/span&gt;&lt;div class=&#039;console-underscore&#039; id=&#039;console&#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#039;], &#039;text&#039;,[&#039;#fff&#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#039;#fff&#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#039;console&#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore hidden&#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore&#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:29:53','2017-08-09 19:29:53','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27069,1,'2017-08-09 15:31:09','2017-08-09 19:31:09','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"10%||10%|\" custom_padding=\"10px||10px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#039;console-container&#039;&gt;&lt;span id=&#039;text&#039;&gt;&lt;/span&gt;&lt;div class=&#039;console-underscore&#039; id=&#039;console&#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#039;], &#039;text&#039;,[&#039;#fff&#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#039;#fff&#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#039;console&#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore hidden&#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore&#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:31:09','2017-08-09 19:31:09','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27071,1,'2017-08-09 15:31:38','2017-08-09 19:31:38','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"12%||12%|\" custom_padding=\"|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#039;console-container&#039;&gt;&lt;span id=&#039;text&#039;&gt;&lt;/span&gt;&lt;div class=&#039;console-underscore&#039; id=&#039;console&#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#039;], &#039;text&#039;,[&#039;#fff&#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#039;#fff&#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#039;console&#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore hidden&#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore&#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:31:38','2017-08-09 19:31:38','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27073,1,'2017-08-09 15:33:06','2017-08-09 19:33:06','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"120px||120px|\" custom_padding=\"|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#039;console-container&#039;&gt;&lt;span id=&#039;text&#039;&gt;&lt;/span&gt;&lt;div class=&#039;console-underscore&#039; id=&#039;console&#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#039;], &#039;text&#039;,[&#039;#fff&#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#039;#fff&#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#039;console&#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore hidden&#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore&#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:33:06','2017-08-09 19:33:06','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27074,1,'2017-08-09 15:33:49','2017-08-09 19:33:49','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"100px||100px|\" custom_padding=\"|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#039;console-container&#039;&gt;&lt;span id=&#039;text&#039;&gt;&lt;/span&gt;&lt;div class=&#039;console-underscore&#039; id=&#039;console&#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#039;], &#039;text&#039;,[&#039;#fff&#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#039;#fff&#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#039;console&#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore hidden&#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore&#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:33:49','2017-08-09 19:33:49','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27076,1,'2017-08-09 15:34:06','2017-08-09 19:34:06','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\" custom_padding=\"|||\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#039;console-container&#039;&gt;&lt;span id=&#039;text&#039;&gt;&lt;/span&gt;&lt;div class=&#039;console-underscore&#039; id=&#039;console&#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#039;], &#039;text&#039;,[&#039;#fff&#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#039;#fff&#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#039;console&#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore hidden&#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore&#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:34:06','2017-08-09 19:34:06','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27078,1,'2017-08-09 15:37:35','2017-08-09 19:37:35','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&#039;console-container&#039;&gt;&lt;span id=&#039;text&#039;&gt;&lt;/span&gt;&lt;div class=&#039;console-underscore&#039; id=&#039;console&#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#039;], &#039;text&#039;,[&#039;#fff&#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#039;#fff&#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#039;console&#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#039;style&#039;, &#039;color:&#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore hidden&#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#039;console-underscore&#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family:Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align:center;&lt;!-- [et_pb_line_break_holder] --&gt; height:36px;&lt;!-- [et_pb_line_break_holder] --&gt; width:1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:37:35','2017-08-09 19:37:35','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27080,1,'2017-08-09 15:40:35','2017-08-09 19:40:35','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&amp;#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&amp;#039;], &amp;#039;text&amp;#039;,[&amp;#039;#fff&amp;#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&amp;#039;#fff&amp;#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&amp;#039;console&amp;#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&amp;#039;style&amp;#039;, &amp;#039;color:&amp;#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&amp;#039;style&amp;#039;, &amp;#039;color:&amp;#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &amp;#039;console-underscore hidden&amp;#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &amp;#039;console-underscore&amp;#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size:2em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:40:35','2017-08-09 19:40:35','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27081,1,'2017-08-09 15:41:36','2017-08-09 19:41:36','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&amp;#039;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&amp;#039;], &amp;#039;text&amp;#039;,[&amp;#039;#fff&amp;#039;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&amp;#039;#fff&amp;#039;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&amp;#039;console&amp;#039;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&amp;#039;style&amp;#039;, &amp;#039;color:&amp;#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&amp;#039;style&amp;#039;, &amp;#039;color:&amp;#039; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &amp;#039;console-underscore hidden&amp;#039;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &amp;#039;console-underscore&amp;#039;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:41:36','2017-08-09 19:41:36','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27082,1,'2017-08-09 15:47:09','2017-08-09 19:47:09','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#ECEFF1&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:47:09','2017-08-09 19:47:09','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27083,1,'2017-08-09 15:49:02','2017-08-09 19:49:02','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#ECEFF1&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:900); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:49:02','2017-08-09 19:49:02','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27084,1,'2017-08-09 15:49:32','2017-08-09 19:49:32','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#ECEFF1&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:500); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 4em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:49:32','2017-08-09 19:49:32','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27085,1,'2017-08-09 15:50:54','2017-08-09 19:50:54','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#ECEFF1&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 7em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 15:50:54','2017-08-09 19:50:54','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27086,1,'2017-08-09 16:12:09','2017-08-09 20:12:09','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p><span style=\"font-size: small;\">917-699-3645</span></p>\r\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n\r\n<ul>\r\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]\r\n\r\n<ul>\r\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\n<p>Burke Award (J&J)<br />\r\nCaples<br />\r\nCreativity Magazine<br />\r\nMark (Cable and Telecommunications Association for Marketing)<br />\r\nNY ADDY<br />\r\nWebAward</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 16:12:09','2017-08-09 20:12:09','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27087,1,'2017-08-09 16:13:25','2017-08-09 20:13:25','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p><span style=\"font-size: small;\">917-699-3645</span></p>\r\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n\r\n<ul>\r\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p><span style=\"font-size: small;\">917-699-3645</span></p>\r\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"|5%||\"]\r\n\r\n<ul>\r\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\n<p>Burke Award (J&J)<br />\r\nCaples<br />\r\nCreativity Magazine<br />\r\nMark (Cable and Telecommunications Association for Marketing)<br />\r\nNY ADDY<br />\r\nWebAward</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 16:13:25','2017-08-09 20:13:25','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27088,1,'2017-08-09 16:14:20','2017-08-09 20:14:20','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 16:14:20','2017-08-09 20:14:20','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27089,1,'2017-08-09 16:15:23','2017-08-09 20:15:23','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p><span style=\"font-size: small;\">917-699-3645</span></p>\r\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n\r\n<ul>\r\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\n<p>Burke Award (J&J)<br />\r\nCaples<br />\r\nCreativity Magazine<br />\r\nMark (Cable and Telecommunications Association for Marketing)<br />\r\nNY ADDY<br />\r\nWebAward</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 16:15:23','2017-08-09 20:15:23','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27090,1,'2017-08-09 16:16:35','2017-08-09 20:16:35','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p><span style=\"font-size: small;\">917-699-3645</span></p>\r\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n\r\n<ul>\r\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p><span style=\"font-size: small;\">917-699-3645</span></p>\r\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\r\n<ul>\r\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<ul>\r\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\n<p>Burke Award (J&J)<br />\r\nCaples<br />\r\nCreativity Magazine<br />\r\nMark (Cable and Telecommunications Association for Marketing)<br />\r\nNY ADDY<br />\r\nWebAward</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 16:16:35','2017-08-09 20:16:35','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27091,1,'2017-08-09 16:16:58','2017-08-09 20:16:58','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /><span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p> <span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth&rsquo;s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestl&eacute; Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless&rsquo;s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n<p>July 2010–Present</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct & digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-09 16:16:58','2017-08-09 20:16:58','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27093,1,'2017-08-09 18:36:20','2017-08-09 22:36:20','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([&#x27;LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW&#x27;], &#x27;text&#x27;,[&#x27;#fff&#x27;]);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [&#x27;#ECEFF1&#x27;];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(&#x27;console&#x27;);&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(&#x27;style&#x27;, &#x27;color:&#x27; + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore hidden&#x27;&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = &#x27;console-underscore&#x27;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 7em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt;  .console-container {  font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home Page – Typewriter EffectA','','publish','closed','closed','','home-page-typewriter-effecta','','','2017-08-09 18:36:20','2017-08-09 22:36:20','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/home-page-typewriter-effecta/',0,'et_pb_layout','',0),(27094,1,'2017-08-09 18:36:52','2017-08-09 22:36:52','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 18:36:52','2017-08-09 22:36:52','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27096,1,'2017-08-09 18:39:05','2017-08-09 22:39:05','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" custom_css_main_element=\"h1 {||  animation: type 3s steps(44);||  overflow:hidden;||  white-space:nowrap;||  font-family:roboto;||  border-right:4px white;||  width:||}||@keyframes type {|| 0% {||   width:0ch;||  }||  100% {||   width:44ch;||  }||}\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 18:39:05','2017-08-09 22:39:05','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27097,1,'2017-08-09 18:50:39','2017-08-09 22:50:39','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-09 18:50:39','2017-08-09 22:50:39','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27106,1,'2017-08-09 20:07:23','2017-08-10 00:07:23','','1_2-07','','inherit','open','closed','','1_2-07','','','2017-08-09 20:07:23','2017-08-10 00:07:23','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_2-07.jpg',0,'attachment','image/jpeg',0),(27107,1,'2017-08-09 20:07:25','2017-08-10 00:07:25','','1_2-08','','inherit','open','closed','','1_2-08','','','2017-08-09 20:07:25','2017-08-10 00:07:25','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_2-08.jpg',0,'attachment','image/jpeg',0),(27108,1,'2017-08-09 20:07:27','2017-08-10 00:07:27','','1_2-09','','inherit','open','closed','','1_2-09','','','2017-08-09 20:07:27','2017-08-10 00:07:27','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_2-09.jpg',0,'attachment','image/jpeg',0),(27109,1,'2017-08-09 20:10:21','2017-08-10 00:10:21','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\n\nTHE COLOR OF INNOVATION\n\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\n\nSUN CHEMICAL BRANDING\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page Template','','publish','closed','closed','','portfolio-page-template','','','2017-08-09 20:10:21','2017-08-10 00:10:21','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-page-template/',0,'et_pb_layout','',0),(27127,1,'2017-08-09 21:00:21','2017-08-10 01:00:21','','1_02-01_Frame','','inherit','open','closed','','1_02-01_frame','','','2017-08-09 21:00:21','2017-08-10 01:00:21','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg',0,'attachment','image/jpeg',0),(27128,1,'2017-08-09 21:10:44','2017-08-10 01:10:44','','Screen Shot 2017-08-09 at 9.07.58 PM','','inherit','open','closed','','screen-shot-2017-08-09-at-9-07-58-pm','','','2017-08-09 21:10:44','2017-08-10 01:10:44','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM.png',0,'attachment','image/png',0),(27129,1,'2017-08-09 21:12:16','2017-08-10 01:12:16','','Screen Shot 2017-08-09 at 9.07.58 PM','','inherit','open','closed','','screen-shot-2017-08-09-at-9-07-58-pm-2','','','2017-08-09 21:12:16','2017-08-10 01:12:16','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png',0,'attachment','image/png',0),(27130,1,'2017-08-09 21:16:17','2017-08-10 01:16:17','','1_02-03_Frame','','inherit','open','closed','','1_02-03_frame','','','2017-08-09 21:16:17','2017-08-10 01:16:17','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg',0,'attachment','image/jpeg',0),(27133,1,'2017-08-09 21:22:20','2017-08-10 01:22:20','','1_2-04_Frame','','inherit','open','closed','','1_2-04_frame','','','2017-08-09 21:22:20','2017-08-10 01:22:20','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg',0,'attachment','image/jpeg',0),(27136,1,'2017-08-09 21:27:15','2017-08-10 01:27:15','','1_2-05_Frame','','inherit','open','closed','','1_2-05_frame','','','2017-08-09 21:27:15','2017-08-10 01:27:15','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg',0,'attachment','image/jpeg',0),(27137,1,'2017-08-09 21:30:57','2017-08-10 01:30:57','','1_2-06_Frame','','inherit','open','closed','','1_2-06_frame','','','2017-08-09 21:30:57','2017-08-10 01:30:57','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg',0,'attachment','image/jpeg',0),(27147,1,'2017-08-09 23:42:07','2017-08-10 03:42:07','[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]','Brand Stories','','inherit','closed','closed','','44-autosave-v1','','','2017-08-09 23:42:07','2017-08-10 03:42:07','',44,'http://copyvet.globat.com/wordpress/44-autosave-v1/',0,'revision','',0),(27188,1,'2017-08-10 14:41:42','2017-08-10 18:41:42','[et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"20%||20%|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"110px||110px|\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Home Page HTML Code\" _builder_version=\"3.0.65\"]&lt;div class=&amp;#039;console-container&amp;#039;&gt;&lt;span id=&amp;#039;text&amp;#039;&gt;&lt;/span&gt;&lt;div class=&amp;#039;console-underscore&amp;#039; id=&amp;#039;console&amp;#039;&gt;_&lt;/div&gt;&lt;/div&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – JS Code\" _builder_version=\"3.0.65\"]&lt;script type=\"text/javascript\"&gt;&lt;!-- [et_pb_line_break_holder] --&gt;// function([string1, string2],target id,[color1,color2])&lt;!-- [et_pb_line_break_holder] --&gt; consoleText([\'LET ME TELL YOU A FEW STORIES ABOUT SOME BRANDS I KNOW\'], \'text\',[\'#fff\']);&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;function consoleText(words, id, colors) {&lt;!-- [et_pb_line_break_holder] --&gt; if (colors === undefined) colors = [\'#ECEFF1\'];&lt;!-- [et_pb_line_break_holder] --&gt; var visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; var con = document.getElementById(\'console\');&lt;!-- [et_pb_line_break_holder] --&gt; var letterCount = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; var waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; var target = document.getElementById(id)&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(\'style\', \'color:\' + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; if (letterCount === 0 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; var usedColor = colors.shift();&lt;!-- [et_pb_line_break_holder] --&gt; colors.push(usedColor);&lt;!-- [et_pb_line_break_holder] --&gt; var usedWord = words.shift();&lt;!-- [et_pb_line_break_holder] --&gt; words.push(usedWord);&lt;!-- [et_pb_line_break_holder] --&gt; x = 1;&lt;!-- [et_pb_line_break_holder] --&gt; target.setAttribute(\'style\', \'color:\' + colors[0])&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (letterCount === words[0].length + 1 &amp;&amp; waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; waiting = true;&lt;!-- [et_pb_line_break_holder] --&gt; window.setTimeout(function() {&lt;!-- [et_pb_line_break_holder] --&gt; x = -1;&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; waiting = false;&lt;!-- [et_pb_line_break_holder] --&gt; }, 1000)&lt;!-- [et_pb_line_break_holder] --&gt; } else if (waiting === false) {&lt;!-- [et_pb_line_break_holder] --&gt; target.innerHTML = words[0].substring(0, letterCount)&lt;!-- [et_pb_line_break_holder] --&gt; letterCount += x;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 150)&lt;!-- [et_pb_line_break_holder] --&gt; window.setInterval(function() {&lt;!-- [et_pb_line_break_holder] --&gt; if (visible === true) {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = \'console-underscore hidden\'&lt;!-- [et_pb_line_break_holder] --&gt; visible = false;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; } else {&lt;!-- [et_pb_line_break_holder] --&gt; con.className = \'console-underscore\'&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt; visible = true;&lt;!-- [et_pb_line_break_holder] --&gt; }&lt;!-- [et_pb_line_break_holder] --&gt; }, 400)&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/script&gt;[/et_pb_code][et_pb_code admin_label=\"Home Page – CSS Code\" _builder_version=\"3.0.65\"]&lt;style&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@import url(https://fonts.googleapis.com/css?family=Roboto:700); &lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;.hidden {&lt;!-- [et_pb_line_break_holder] --&gt; opacity:0;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-container {&lt;!-- [et_pb_line_break_holder] --&gt; font-family: Roboto;&lt;!-- [et_pb_line_break_holder] --&gt; font-weight: bold&lt;!-- [et_pb_line_break_holder] --&gt; font-size: 7em;&lt;!-- [et_pb_line_break_holder] --&gt; text-align: center;&lt;!-- [et_pb_line_break_holder] --&gt; height: 36px;&lt;!-- [et_pb_line_break_holder] --&gt; width: 1331px;&lt;!-- [et_pb_line_break_holder] --&gt; display:inline;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; color:white;&lt;!-- [et_pb_line_break_holder] --&gt; top:0;&lt;!-- [et_pb_line_break_holder] --&gt; bottom:0;&lt;!-- [et_pb_line_break_holder] --&gt; left:0;&lt;!-- [et_pb_line_break_holder] --&gt; right:0;&lt;!-- [et_pb_line_break_holder] --&gt; margin:auto;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;.console-underscore {&lt;!-- [et_pb_line_break_holder] --&gt; display:inline-block;&lt;!-- [et_pb_line_break_holder] --&gt; position:relative;&lt;!-- [et_pb_line_break_holder] --&gt; left:10px;&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;@media (max-width: 750px) {&lt;!-- [et_pb_line_break_holder] --&gt; .console-container { font-size:2em; }&lt;!-- [et_pb_line_break_holder] --&gt;}&lt;!-- [et_pb_line_break_holder] --&gt;&lt;!-- [et_pb_line_break_holder] --&gt;&lt;/style&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-10 14:41:42','2017-08-10 18:41:42','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27190,1,'2017-08-10 18:51:39','2017-08-10 22:51:39','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"color: #ff9335;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400;\">Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Highlights</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nExperience\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJuly 2010–Present\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Atmosphere Proximity, Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2010–July 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong>Freelance Creative Director</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nApril 2005–April 2010\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> G2 direct &amp; digital, Associate Creative Director </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2003–April 2005\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Freelance Creative Director/Copywriter </strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nSept 2001–Sept 2003\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<span style=\"color: #ff9335;\"><strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nJune 1996–July 2001\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]\r\n\r\n<strong> Lowe Lintas Advertising, Senior Copywriter</strong>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\n1989\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nColumbia University, BA, Political Science\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nAwards\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-10 18:51:39','2017-08-10 22:51:39','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27191,1,'2017-08-11 10:26:45','2017-08-11 14:26:45','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff;\"><span style=\"font-family: Roboto; font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-11 10:26:45','2017-08-11 14:26:45','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27194,1,'2017-08-11 10:43:11','2017-08-11 14:43:11','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION.</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\" border_color=\"#eceff1\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 10:43:11','2017-08-11 14:43:11','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27196,1,'2017-08-11 10:43:24','2017-08-11 14:43:24','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br /><span style=\"color: #ff9335;\">ADD VALUE TO YOUR ORGANIZATION</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.47\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff;\"><strong><span style=\"font-family: Roboto;\">EMAIL</span></strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><u>jeremy@jeremyfeldman.com</u></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\" border_color=\"#eceff1\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 10:43:24','2017-08-11 14:43:24','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27199,1,'2017-08-11 15:22:11','2017-08-11 19:22:11','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff; font-family: quicksandlight;\"><span style=\"font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-11 15:22:11','2017-08-11 19:22:11','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27200,1,'2017-08-11 15:22:51','2017-08-11 19:22:51','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff; font-family: quicksandlight;\"><span style=\"font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW</strong> </span></span></span><span style=\"color: #e09900; font-family: eleganticons; font-size: 24pt;\"><strong><span style=\"color: #8bc34a; vertical-align: bottom;\">9</span></strong></span></span></a></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-11 15:22:51','2017-08-11 19:22:51','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27201,1,'2017-08-11 15:26:20','2017-08-11 19:26:20','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" admin_label=\"Homepage Content Area\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" admin_label=\"Homepage Headline \" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Home Page Headline\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\"]<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff; font-family: quicksandlight;\"><span style=\"font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW <span style=\"color: #8bc34a;\">&raquo;</span></strong></span></span></span></span></a></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-11 15:26:20','2017-08-11 19:26:20','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27203,1,'2017-08-11 15:33:04','2017-08-11 19:33:04','[et_pb_section bb_built=\"1\" admin_label=\"Homepage Content Area\" background_color=\"#1f497d\" custom_padding=\"35px|0px|40px|0px\" _builder_version=\"3.0.65\"][et_pb_row admin_label=\"Homepage Headline \" custom_padding=\"19%||20%|\" custom_padding_phone=\"10%||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Home Page Headline\" text_orientation=\"center\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" header_font=\"eleganticons||||\" header_font_size=\"32px\" header_font_size_last_edited=\"on|desktop\" header_letter_spacing_last_edited=\"on|phone\" header_line_height=\"1.3em\" header_line_height_phone=\"38px\" header_line_height_last_edited=\"on|phone\" inline_fonts=\"Roboto,Happy Monkey\" background_layout=\"light\" border_style=\"solid\"]\r\n\r\n<h1><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/brand-stories\"><span style=\"color: #ffffff;\"><span style=\"color: #ffffff; font-family: quicksandlight;\"><span style=\"font-weight: normal;\"><strong>LET ME TELL YOU A FEW STORIES</strong><span style=\"color: #ff9335;\"><strong> ABOUT SOME BRANDS I KNOW <span style=\"color: #8bc34a; font-size: 32pt;\">»</span></strong></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','42-revision-v1','','','2017-08-11 15:33:04','2017-08-11 19:33:04','',42,'http://copyvet.globat.com/wordpress/42-revision-v1/',0,'revision','',0),(27204,1,'2017-08-11 15:35:01','2017-08-11 19:35:01','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">HELLO,</span>\r\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span>\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span>\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" background_layout=\"dark\"]\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span>\r\n\r\n<span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I’ve touched. It\'s been quite a ride.</span>\r\n\r\n<a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work </span>9</a>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-11 15:35:01','2017-08-11 19:35:01','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27205,1,'2017-08-11 15:36:32','2017-08-11 19:36:32','[et_pb_section bb_built=\"1\" admin_label=\"section\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">HELLO,</span>\r\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span>\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span>\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"eleganticons||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" background_layout=\"dark\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span>\r\n\r\n<span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I’ve touched. It\'s been quite a ride.</span>\r\n\r\n<a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work </span><span style=\"font-size: 14pt;\">»</span></a>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-11 15:36:32','2017-08-11 19:36:32','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27207,1,'2017-08-11 15:37:47','2017-08-11 19:37:47','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.65\" text_font=\"Open Sans Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]<p>&nbsp;</p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I’ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work </span><span style=\"font-size: 14pt;\">»</span></a></p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-11 15:37:47','2017-08-11 19:37:47','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27208,1,'2017-08-11 15:38:43','2017-08-11 19:38:43','<p>[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\" custom_margin=\"0px|||\"]</p><p><span style=\"color: #ff9335;\">Jeremy Feldman</span><br /> <span style=\"color: #c66400;\">Creative Director</span><br /> <span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]</p><p><span style=\"font-size: small;\">917-699-3645</span></p><p><span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p><p>[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]</p><p><strong>Highlights</strong></p><p>[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]</p><p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p><ul><li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li><li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li><li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li></ul><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>Experience</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>July 2010–Present</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]</p><p><strong>Atmosphere Proximity, Creative Director</strong></p><p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]</p><ul><li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li><li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li><li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li><li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li><li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li><li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li></ul><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>April 2010–July 2010</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]</p><p><strong>Freelance Creative Director</strong></p><p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]</p><ul><li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li><li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li></ul><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>April 2005–April 2010</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]</p><p><strong> G2 direct &amp; digital, Associate Creative Director </strong></p><p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]</p><ul><li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li><li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li><li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li><li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li></ul><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>Sept 2003–April 2005</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]</p><p><strong> Freelance Creative Director/Copywriter </strong></p><p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]</p><ul><li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li><li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li><li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li><li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li></ul><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>Sept 2001–Sept 2003</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]</p><p><span style=\"color: #ff9335;\"><strong> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </strong></span></p><p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]</p><ul><li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li><li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li></ul><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>June 1996–July 2001</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#FF9335\"]</p><p><strong> Lowe Lintas Advertising, Senior Copywriter</strong></p><p>[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]</p><p>Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>Education</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>1989</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>Columbia University, BA, Political Science</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]</p><p>Awards</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]</p><p>Burke Award (J&amp;J)<br /> Caples<br /> Creativity Magazine<br /> Mark (Cable and Telecommunications Association for Marketing)<br /> NY ADDY<br /> WebAward</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]</p>','Resume Roboto','','publish','closed','closed','','resume-roboto','','','2017-08-11 15:38:43','2017-08-11 19:38:43','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/resume-roboto/',0,'et_pb_layout','',0),(27210,1,'2017-08-11 15:44:17','2017-08-11 19:44:17','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Highlights</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">July 2010–Present</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">April 2010–July 2010</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">April 2005–April 2010</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">June 1996–July 2001</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"]\r\n\r\nEducation\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">1989</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Awards</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 15:44:17','2017-08-11 19:44:17','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27211,1,'2017-08-11 15:46:50','2017-08-11 19:46:50','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">Experience</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Developed direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using both direct mail and online banner advertising</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award.</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] Education [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 15:46:50','2017-08-11 19:46:50','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27213,1,'2017-08-11 15:56:01','2017-08-11 19:56:01','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Experience</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy &ndash; Developed TV concepts for Reminyl Rx, an Alzheimer&rsquo;s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) &ndash; Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM &ndash; Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect &ndash; Created dimensional direct mail for Merrill Lynch</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the &ldquo;mLife&rdquo; campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#FF9335\"] Education [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 15:56:01','2017-08-11 19:56:01','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27214,1,'2017-08-11 15:56:54','2017-08-11 19:56:54','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Experience</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 15:56:54','2017-08-11 19:56:54','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27216,1,'2017-08-11 16:01:03','2017-08-11 20:01:03','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small;\"> <a href=\"mailto:jeremy@jeremyfedman.com\"><span style=\"color: #c66400;\">jeremy@jeremyfedman.com</span></a></span></p>[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]<p><span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]<p><span style=\"color: #cc6666;\"><span>Education<span style=\"color: #cc6640;\"><span><span style=\"color: #c66400;\"><span></span></span></span></span></span></span><span style=\"font-family: quicksandreg; color: rgba(255, 255, 255, 0);\">Education</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:01:03','2017-08-11 20:01:03','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27218,1,'2017-08-11 16:02:07','2017-08-11 20:02:07','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ECEFF1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]<p><span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]<p><span style=\"color: #cc6666;\"><span>Education<span style=\"color: #cc6640;\"><span><span style=\"color: #c66400;\"><span></span></span></span></span></span></span><span style=\"font-family: quicksandreg; color: rgba(255, 255, 255, 0);\">Education</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:02:07','2017-08-11 20:02:07','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27220,1,'2017-08-11 16:03:38','2017-08-11 20:03:38','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Phone &amp; Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"rgba(31,73,125,0)\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:03:38','2017-08-11 20:03:38','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27221,1,'2017-08-11 16:06:47','2017-08-11 20:06:47','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Phone &amp; Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||5%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" _builder_version=\"3.0.65\" url_new_window=\"off\" follow_button=\"off\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\" skype_action=\"call\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"on\" skype_action=\"call\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:06:47','2017-08-11 20:06:47','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27223,1,'2017-08-11 16:08:40','2017-08-11 20:08:40','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Phone & Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||1%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:08:40','2017-08-11 20:08:40','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27224,1,'2017-08-11 16:09:12','2017-08-11 20:09:12','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Phone & Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||2%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:09:12','2017-08-11 20:09:12','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27225,1,'2017-08-11 16:09:30','2017-08-11 20:09:30','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Phone & Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||4%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:09:30','2017-08-11 20:09:30','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27227,1,'2017-08-11 16:09:50','2017-08-11 20:09:50','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Phone & Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||6%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:09:50','2017-08-11 20:09:50','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27229,1,'2017-08-11 16:10:11','2017-08-11 20:10:11','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Phone & Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||5%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:10:11','2017-08-11 20:10:11','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27231,1,'2017-08-11 16:14:30','2017-08-11 20:14:30','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Phone & Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||1%|\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"||||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_text_color=\"#ff9335\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&amp;J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-11 16:14:30','2017-08-11 20:14:30','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27232,1,'2017-08-11 16:16:14','2017-08-11 20:16:14','[et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Headline\" max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ffffff;\">LET\'S CHAT ABOUT HOW I CAN HELP </span>\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">ADD VALUE TO YOUR ORGANIZATION</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandreg;\"><strong>EMAIL</strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\" border_color=\"#eceff1\"] [et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:16:14','2017-08-11 20:16:14','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27233,1,'2017-08-11 16:16:48','2017-08-11 20:16:48','[et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Headline\" max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span>\r\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandreg;\"><strong>EMAIL</strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\" border_color=\"#eceff1\"] [et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:16:48','2017-08-11 20:16:48','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27234,1,'2017-08-11 16:17:38','2017-08-11 20:17:38','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandreg;\"><strong>EMAIL</strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Roboto||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:17:38','2017-08-11 20:17:38','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27236,1,'2017-08-11 16:19:14','2017-08-11 20:19:14','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandreg;\"><strong>EMAIL</strong></span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\"]<p><span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span></p>[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\" admin_label=\"Message Form\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans|on|||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:19:14','2017-08-11 20:19:14','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27237,1,'2017-08-11 16:20:18','2017-08-11 20:20:18','[et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"37.5625px|0px|61px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_text admin_label=\"Headline\" max_width=\"480px\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span>\r\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\" custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat|on|||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandreg;\"><strong>EMAIL</strong></span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Phone\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"12px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_contact_form admin_label=\"Message Form\" email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"] [et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans|on|||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:20:18','2017-08-11 20:20:18','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27239,1,'2017-08-11 16:25:16','2017-08-11 20:25:16','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|29px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]<p><span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat||||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff; font-family: quicksandreg;\">EMAIL</span></p>\n<p><span style=\"color: #ffffff; font-family: quicksandreg;\"></span></p>[/et_pb_text][et_pb_text admin_label=\"Phone\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" admin_label=\"Message Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans|on|||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:25:16','2017-08-11 20:25:16','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27240,1,'2017-08-11 16:25:38','2017-08-11 20:25:38','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|29px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"45px\" text_font_size_phone=\"29px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span>\r\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat||||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"color: #ffffff; font-family: quicksandreg;\">EMAIL</span>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Phone\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" admin_label=\"Message Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans|on|||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:25:38','2017-08-11 20:25:38','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27243,1,'2017-08-11 16:29:04','2017-08-11 20:29:04','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|29px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"45px\" text_font_size_phone=\"32px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_line_height_last_edited=\"on|phone\"]<p><span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat||||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff; font-family: quicksandreg;\">EMAIL</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text admin_label=\"Phone\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" admin_label=\"Message Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans|on|||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:29:04','2017-08-11 20:29:04','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27244,1,'2017-08-11 16:29:18','2017-08-11 20:29:18','[et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"14%||14%|\" custom_padding_phone=\"14%||10%|\" specialty=\"on\" parallax_1=\"off\" parallax_2=\"off\" parallax_method_1=\"off\" parallax_method_2=\"off\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_row_inner custom_padding=\"37.5625px|0px|29px|0px\" custom_padding_phone=\"1px|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"4\" column_padding_mobile=\"on\" parallax_method_1=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text max_width=\"480px\" admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"45px\" text_font_size_phone=\"30px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#202020\" text_line_height=\"1.1em\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|10%||\" text_line_height_last_edited=\"on|phone\"]<p><span style=\"color: #ffffff; font-family: quicksandlight;\">LET\'S CHAT ABOUT HOW I CAN HELP </span><br />\n<span style=\"color: #ff9335; font-family: quicksandlight;\"> ADD VALUE TO YOUR ORGANIZATION</span></p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner custom_padding=\"0px|||\" custom_padding_phone=\"15%|0px|0px|0px\" use_custom_gutter=\"on\" gutter_width=\"1\" column_padding_mobile=\"on\" parallax_method_1=\"off\" parallax_method_2=\"off\" admin_label=\"Row\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][et_pb_text _builder_version=\"3.0.65\" text_font=\"Montserrat||||\" text_font_size=\"24\" text_text_color=\"#202020\" text_letter_spacing=\"1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"||0px|\" inline_fonts=\"Roboto\"]<p><span style=\"color: #ffffff; font-family: quicksandreg;\">EMAIL</span></p>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text admin_label=\"Phone\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_text_color=\"#ffffff\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"0px|||\"]\r\n\r\n<span style=\"font-family: quicksandreg; color: #8bc34a;\"><u>jeremy@jeremyfeldman.com</u></span>\r\n\r\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.0.47\" column_padding_mobile=\"on\" parallax=\"off\" parallax_method=\"off\"][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"off\"][et_pb_contact_form email=\"jeremy@jeremyfeldman.com\" success_message=\"Glad to hear from you! Check your inbox soon for a reply.\" submit_button_text=\"SEND \" form_background_color=\"#002250\" input_border_radius=\"3px\" admin_label=\"Message Form\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.65\" title_font=\"Roboto|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" form_field_font=\"Roboto|on|||\" form_field_text_color=\"#eceff1\" form_field_letter_spacing=\"1px\" form_field_line_height=\"1.3em\" use_border_color=\"on\" border_color=\"#eceff1\" border_width=\"2px\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"#002250\" button_border_width=\"2px\" button_border_color=\"#eceff1\" button_border_radius=\"4px\" button_letter_spacing=\"0px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4px\" button_letter_spacing_hover=\"0px\"][et_pb_contact_field field_id=\"Name\" field_title=\"NAME\" field_background_color=\"#002250\" input_border_radius=\"6px\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans|on|||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"MESSAGE\" field_type=\"text\" fullwidth_field=\"on\" field_background_color=\"#002250\" _builder_version=\"3.0.47\" form_field_font=\"Open Sans||||\" form_field_letter_spacing=\"2px\" use_border_color=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_section]','Contact Me','','inherit','closed','closed','','50-revision-v1','','','2017-08-11 16:29:18','2017-08-11 20:29:18','',50,'http://copyvet.globat.com/wordpress/50-revision-v1/',0,'revision','',0),(27246,1,'2017-08-11 16:31:28','2017-08-11 20:31:28','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Roboto|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\nSUN CHEMICAL BRANDING\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 16:31:28','2017-08-11 20:31:28','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27248,1,'2017-08-11 16:34:18','2017-08-11 20:34:18','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs.&nbsp;Once upon a time there was a great lkasdfj lakjf.</p>[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]<p>SUN CHEMICAL BRANDING</p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 16:34:18','2017-08-11 20:34:18','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27250,1,'2017-08-11 16:35:59','2017-08-11 20:35:59','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 16:35:59','2017-08-11 20:35:59','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27252,1,'2017-08-11 16:36:44','2017-08-11 20:36:44','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_text _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 16:36:44','2017-08-11 20:36:44','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27253,1,'2017-08-11 16:37:18','2017-08-11 20:37:18','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"26px\" text_font_size_phone=\"22px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 16:37:18','2017-08-11 20:37:18','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27274,1,'2017-08-11 17:09:55','2017-08-11 21:09:55','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"42px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_line_height=\"1em\"]<p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 17:09:55','2017-08-11 21:09:55','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27275,1,'2017-08-11 17:10:26','2017-08-11 21:10:26','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"38px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_line_height=\"1em\"]<p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 17:10:26','2017-08-11 21:10:26','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27276,1,'2017-08-11 17:10:38','2017-08-11 21:10:38','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_line_height=\"1em\"]<p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"16px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 17:10:38','2017-08-11 21:10:38','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27278,1,'2017-08-11 17:11:28','2017-08-11 21:11:28','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_line_height=\"1em\"]<p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 17:11:28','2017-08-11 21:11:28','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27291,1,'2017-08-11 17:33:23','2017-08-11 21:33:23','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]<p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-11 17:33:23','2017-08-11 21:33:23','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27293,1,'2017-08-11 17:51:57','2017-08-11 21:51:57','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Speed Demons</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|phone\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#212121\" text_line_height=\"1.5em\" text_line_height_phone=\"1.5em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]\r\n\r\nConvincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_2','','publish','closed','closed','','1_2','','','2017-09-11 23:53:11','2017-09-12 03:53:11','',44,'http://copyvet.globat.com/wordpress/?page_id=27293',0,'page','',0),(27294,1,'2017-08-11 17:51:57','2017-08-11 21:51:57','[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]','1_2','','inherit','closed','closed','','27293-revision-v1','','','2017-08-11 17:51:57','2017-08-11 21:51:57','',27293,'http://copyvet.globat.com/wordpress/27293-revision-v1/',0,'revision','',0),(27295,1,'2017-08-11 17:52:35','2017-08-11 21:52:35','','BELL SOUTH','','publish','closed','closed','','27295','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',44,'http://copyvet.globat.com/wordpress/?p=27295',4,'nav_menu_item','',0),(27296,1,'2017-08-11 17:55:12','2017-08-11 21:55:12','<p>[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]</p><p><span style=\"font-family: quicksandlight;\">Speed Demons</span></p><p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]</p><p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p><p>[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]</p><p><span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL</span></p><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#212121\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]</p><p>Convincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]</p><p><span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN</span></p><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]</p><p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Portfolio Page Template','','publish','closed','closed','','portfolio-page-template-2','','','2017-08-11 17:55:12','2017-08-11 21:55:12','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-page-template-2/',0,'et_pb_layout','',0),(27297,1,'2017-08-11 17:55:58','2017-08-11 21:55:58','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Speed Demons</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#212121\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]\r\n\r\nConvincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_2','','inherit','closed','closed','','27293-revision-v1','','','2017-08-11 17:55:58','2017-08-11 21:55:58','',27293,'http://copyvet.globat.com/wordpress/27293-revision-v1/',0,'revision','',0),(27299,1,'2017-08-14 19:30:56','2017-08-14 23:30:56','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'OpenSans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a!important;\nbackground: #5374ad!important;\nborder-color: #ffffff!important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 2em;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-14 19:30:56','2017-08-14 23:30:56','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27300,1,'2017-08-14 19:35:54','2017-08-14 23:35:54','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a!important;\nbackground: #5374ad!important;\nborder-color: #ffffff!important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 2em;\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-14 19:35:54','2017-08-14 23:35:54','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27303,1,'2017-08-14 20:09:55','2017-08-15 00:09:55','[et_pb_section fb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\" text_font_size=\"18px\" text_line_height=\"1.4em\"]<p><span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span><br />\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span><br />\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Phone & Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_phone=\"||1%|\" custom_padding_last_edited=\"on|phone\"]<p><span style=\"font-size: small;\">917-699-3645</span></p>\n<p><span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span></p>\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"][et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"17px\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<p>15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&T Wireless, Dell and Time Warner Cable.</p>\n<ul>\n<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\n<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\n<li>Drove 50% increase in AT&T Wireless’s voice-activated information service through national radio campaign.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">July 2010–Present</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]<ul>\n<li>Doubled the size of the DePuy Synthes account (J&J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\n<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\n<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\n<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\n<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\n<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">April 2010–July 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\n<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">April 2005–April 2010</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct & digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\n<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\n<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\n<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\n<li>dotglu (Kirshenbaum Bond & Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\n<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\n<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy & Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]<ul>\n<li>Supervised the retail creative advertising team on the $500+ million AT&T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\n<li>Established AT&T Wireless as the number two consumer cell phone carrier in the U.S.</li>\n</ul>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">June 1996–July 2001</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">1989</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"] <span style=\"font-family: quicksandlight;\">Awards</span> [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]<p>Burke Award (J&J)<br />\nCaples<br />\nCreativity Magazine<br />\nMark (Cable and Telecommunications Association for Marketing)<br />\nNY ADDY<br />\nWebAward</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-14 20:09:55','2017-08-15 00:09:55','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27305,1,'2017-08-14 20:12:49','2017-08-15 00:12:49','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Speed Demons</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#212121\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\" text_font_size_last_edited=\"on|desktop\" text_line_height_last_edited=\"on|desktop\" text_line_height_phone=\"1.5em\"]\r\n\r\nConvincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_2','','inherit','closed','closed','','27293-revision-v1','','','2017-08-14 20:12:49','2017-08-15 00:12:49','',27293,'http://copyvet.globat.com/wordpress/27293-revision-v1/',0,'revision','',0),(27309,1,'2017-08-15 09:56:31','2017-08-15 13:56:31','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 20vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 09:56:31','2017-08-15 13:56:31','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27310,1,'2017-08-15 10:03:45','2017-08-15 14:03:45','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 40vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 10:03:45','2017-08-15 14:03:45','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27311,1,'2017-08-15 10:04:09','2017-08-15 14:04:09','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 10:04:09','2017-08-15 14:04:09','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27312,4,'2017-08-15 10:04:11','2017-08-15 14:04:11','','Auto Draft','','trash','open','open','','__trashed','','','2017-08-19 00:19:35','2017-08-19 04:19:35','',0,'http://copyvet.globat.com/wordpress/?p=27312',0,'post','',0),(27313,1,'2017-08-15 10:04:37','2017-08-15 14:04:37','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 25vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 10:04:37','2017-08-15 14:04:37','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27314,1,'2017-08-15 10:04:56','2017-08-15 14:04:56','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 28vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 10:04:56','2017-08-15 14:04:56','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27315,1,'2017-08-15 10:05:12','2017-08-15 14:05:12','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 10:05:12','2017-08-15 14:05:12','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27322,1,'2017-08-15 11:56:00','2017-08-15 15:56:00','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 5%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 11:56:00','2017-08-15 15:56:00','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27323,1,'2017-08-15 11:56:40','2017-08-15 15:56:40','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 3%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 11:56:40','2017-08-15 15:56:40','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27324,1,'2017-08-15 11:56:57','2017-08-15 15:56:57','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-15 11:56:57','2017-08-15 15:56:57','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27325,1,'2017-08-15 15:05:30','2017-08-15 19:05:30','{\n    \"et_divi[all_buttons_icon]\": {\n        \"value\": \"no\",\n        \"type\": \"option\",\n        \"user_id\": 1\n    }\n}','','','trash','closed','closed','','ca32f644-6a35-4bb2-9c91-1ab930811a5b','','','2017-08-15 15:05:30','2017-08-15 19:05:30','',0,'http://copyvet.globat.com/wordpress/?p=27325',0,'customize_changeset','',0),(27327,1,'2017-08-15 15:30:04','2017-08-15 19:30:04','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.69\" text_font=\"Open Sans Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" text_font_size=\"19px\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"18px\"]<p> </p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I’ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work </span><span style=\"font-size: 14pt;\">»</span></a></p>\n<p> </p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-15 15:30:04','2017-08-15 19:30:04','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27329,1,'2017-08-15 15:30:37','2017-08-15 19:30:37','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.69\" text_font=\"Open Sans Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" text_font_size=\"19px\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"17px\"]<p> </p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I’ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work </span><span style=\"font-size: 14pt;\">»</span></a></p>\n<p> </p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-15 15:30:37','2017-08-15 19:30:37','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27331,1,'2017-08-15 15:31:06','2017-08-15 19:31:06','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.69\" text_font=\"Open Sans Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" text_font_size=\"17px\"]<p> </p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson & Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I’ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work </span><span style=\"font-size: 14pt;\">»</span></a></p>\n<p> </p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-15 15:31:06','2017-08-15 19:31:06','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27333,1,'2017-08-15 15:31:34','2017-08-15 19:31:34','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.69\" text_font=\"Open Sans Light||||\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" text_font_size=\"17px\"]<p>&nbsp;</p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I&rsquo;ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work&nbsp;</span><span style=\"font-size: 14pt;\">&raquo;</span></a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-15 15:31:34','2017-08-15 19:31:34','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27335,1,'2017-08-15 15:33:07','2017-08-15 19:33:07','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.69\" text_font=\"Open Sans Light||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\"]<p>&nbsp;</p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I&rsquo;ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work&nbsp;</span><span style=\"font-size: 14pt;\">&raquo;</span></a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-15 15:33:07','2017-08-15 19:33:07','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27337,1,'2017-08-15 15:33:29','2017-08-15 19:33:29','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"15%|0px|12%|0px\" disabled_on=\"off|off|off\" admin_label=\"section\" _builder_version=\"3.0.65\" parallax=\"on\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" padding_mobile=\"on\" custom_margin=\"0px||0px|\" background_color_1=\"#1f497d\" background_color_2=\"rgba(0,0,0,0)\" parallax_1=\"on\" parallax_method_2=\"off\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" padding_2_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#1f497d\" parallax=\"on\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text admin_label=\"Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"72px\" text_font_size_phone=\"34px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" text_line_height=\"1em\" header_font_size=\"70px\" header_font_size_phone=\"36px\" header_font_size_last_edited=\"on|desktop\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|21%\" custom_padding_phone=\"26%||0px|10%\" custom_padding_last_edited=\"on|desktop\" custom_css_main_element=\"font-weight:400;\"]<p><span style=\"font-family: quicksandreg;\">HELLO,</span><br />\n<span style=\"font-family: quicksandreg;\">I\'M JEREMY,</span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">A CREATIVE DIRECTOR </span><br />\n<span style=\"color: #ff9335; font-family: quicksandreg;\">WITH 20 YEARS\' EXPERIENCE</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|desktop\" background_color=\"rgba(0,0,0,0)\" parallax=\"off\" parallax_method=\"off\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" admin_label=\"About Me Text\" _builder_version=\"3.0.69\" text_font=\"Open Sans Light||||\" text_font_size=\"19px\" text_text_color=\"#ffffff\" text_line_height=\"1.8em\" custom_margin=\"0px|20%||20%\" custom_margin_phone=\"12%|20%||11%\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||20%|\" inline_fonts=\"Roboto Light\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"17px\"]<p>&nbsp;</p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Over the course of my career, I\'ve been introduced to some remarkable brands, from AT&amp;T, Bell South, RCN and Time Warner Cable Business Class to Dell, HP and Microsoft, to Johnson &amp; Johnson, Novo Nordisk and Sunovion. Just to name a few.</span></p>\n<p><span style=\"font-family: Roboto; font-weight: 100;\">Let me tell you some entertaining stories about a few of the brands I&rsquo;ve touched. It\'s been quite a ride.</span></p>\n<p><a href=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/brand-stories\"><span style=\"font-family: Roboto; font-weight: 100;\">I hope you enjoy the work&nbsp;</span><span style=\"font-size: 14pt;\">&raquo;</span></a></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About Me','','inherit','closed','closed','','48-revision-v1','','','2017-08-15 15:33:29','2017-08-15 19:33:29','',48,'http://copyvet.globat.com/wordpress/48-revision-v1/',0,'revision','',0),(27341,1,'2017-08-15 15:37:36','2017-08-15 19:37:36','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\" text_font_size=\"18px\" text_line_height=\"1.4em\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Phone &amp; Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_phone=\"||1%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"] [et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"17px\"] <span style=\"font-family: quicksandreg;\">Highlights</span> [/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li>Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li>Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li>Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">July 2010–Present</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\"]\r\n<ul>\r\n 	<li>Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li>Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li>Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li>Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li>Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li>Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">April 2010–July 2010</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li>Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">April 2005–April 2010</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li>Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\r\n 	<li>Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\r\n 	<li>Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li>dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\r\n 	<li>MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li>Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\"]\r\n<ul>\r\n 	<li>Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\r\n 	<li>Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">June 1996–July 2001</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"] Created award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities). [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">1989</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Awards</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-15 15:37:36','2017-08-15 19:37:36','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27343,1,'2017-08-15 15:48:29','2017-08-15 19:48:29','[et_pb_section bb_built=\"1\" background_color=\"#14497d\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Name Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" custom_margin=\"0px|||\" text_font_size=\"18px\" text_line_height=\"1.4em\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\">Jeremy Feldman</span>\r\n<span style=\"color: #c66400; font-family: quicksandreg;\"> Creative Director</span>\r\n<span style=\"color: #000055;\"><span style=\"color: rgba(255, 255, 255, 0);\">Creative Director</span></span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"0px||0px|\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Phone &amp; Email\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#eceff1\" text_line_height=\"1em\" custom_margin=\"||6%|\" custom_margin_phone=\"||3%|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||3%|\" custom_padding_phone=\"||1%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-size: small;\">917-699-3645</span>\r\n\r\n<span style=\"font-size: small; color: #8bc34a;\"> <a href=\"mailto:jeremy@jeremyfedman.com\">jeremy@jeremyfedman.com</a></span>\r\n\r\n[/et_pb_text][et_pb_social_media_follow link_shape=\"circle\" background_layout=\"dark\" url_new_window=\"off\" _builder_version=\"3.0.65\"]\r\n\r\n[et_pb_social_media_follow_network social_network=\"linkedin\" url=\"http://www.linkedin.com/in/jeremyfeldman\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] LinkedIn [/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"https://twitter.com/copyvet\" bg_color=\"#8bc34a\" _builder_version=\"3.0.47\" link_shape=\"circle\" follow_button=\"off\" url_new_window=\"off\"] Twitter [/et_pb_social_media_follow_network]\r\n\r\n[/et_pb_social_media_follow][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Highlights Title\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"17px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Highlights</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Highlights Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.4em\" header_line_height=\"1.5em\" custom_margin=\"|0px||\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n15+ years in-house experience at leading international ad agencies, creating winning campaigns for mega brands, such as AT&amp;T Wireless, Dell and Time Warner Cable.\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Achieved all time best response rates for BellSouth’s Large Business direct marketing program and their consumer DSL multi-channel acquisition program.</li>\r\n 	<li style=\"margin-left: 15px;\">Rebranded Nestlé Waters, Sun Chemical and Time Warner Cable Business Class.</li>\r\n 	<li style=\"margin-left: 15px;\">Drove 50% increase in AT&amp;T Wireless’s voice-activated information service through national radio campaign.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Experience Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight; color: #c66400;\">Experience</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">July 2010–Present</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Atmosphere Proximity, Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"0px|0px|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|||\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Doubled the size of the DePuy Synthes account (J&amp;J) by developing a complete digital ecosystem for HCP and patients. Developed a digital brand awareness campaign. Launched their first patient CRM program.</li>\r\n 	<li style=\"margin-left: 15px;\">Launched Saxenda, Novo Nordisk’s anti-obesity drug, with a campaign consisting of three websites, two banner campaigns and several patient-facing digital tools</li>\r\n 	<li style=\"margin-left: 15px;\">Reimagined the patient digital educational experience for Wall Street English (Pearson), including social media functionality, gamification rewards and calendaring of events</li>\r\n 	<li style=\"margin-left: 15px;\">Created an interactive retail sales wall for Citibank branches across the country with unique digital tools designed to bring 10 business offerings to life</li>\r\n 	<li style=\"margin-left: 15px;\">Launched RoomKey.com with a Facebook promotion garnering 25,000+ “Likes” in under three weeks</li>\r\n 	<li style=\"margin-left: 15px;\">Won a pitch for Ethicon’s digital AOR and worked closely to develop their global digital marketing strategy</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">April 2010–July 2010</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Freelance Creative Director</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|50px|3%|\" custom_margin_phone=\"|5%||\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Rosetta – Helped win two new business pitches: Purdue Pharmaceuticals and Valvoline</li>\r\n 	<li style=\"margin-left: 15px;\">Rauxa Direct – Brought Verizon’s new branding to life in the B2B CRM space</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">April 2005–April 2010</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> G2 direct &amp; digital, Associate Creative Director </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Developed consumer direct mail concepts for the Liberty Mutual auto insurance account, targeting college students</li>\r\n 	<li style=\"margin-left: 15px;\">Led the consumer DSL, small and large business creative teams on the BellSouth/AT&amp;T account for two years. Achieved all time best response rates using direct mail, email, digital display advertising driving to online registration</li>\r\n 	<li style=\"margin-left: 15px;\">Directed a rebranding effort for Time Warner Cable Business Class, encompassing a wide variety of media including print advertising, radio, email, microsites, Web banner ads and collateral. Won a NY ADDY award</li>\r\n 	<li style=\"margin-left: 15px;\">Rebranded Sun Chemical, the largest ink and pigment manufacturer in the world. This entailed developing a new identity for internal and external communications across a wide variety of media including a complete redesign of their global corporate Web site (sunchemical.com), trade show event marketing, print advertising, email, Web banners, microsites, landing pages, collateral and PowerPoint presentations.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Sept 2003–April 2005</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Freelance Creative Director/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Alchemy – Developed TV concepts for Reminyl Rx, an Alzheimer’s drug</li>\r\n 	<li style=\"margin-left: 15px;\">dotglu (Kirshenbaum Bond &amp; Partners) – Helped win the Mohegan Sun account, brought new Verizon SuperPages campaign to life in B2B direct space, developed an online promotion for beach-nut.com</li>\r\n 	<li style=\"margin-left: 15px;\">MRM – Brought Avaya print campaign to life for digital, created Microsoft educational materials</li>\r\n 	<li style=\"margin-left: 15px;\">Thompson Connect – Created dimensional direct mail for Merrill Lynch</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Sept 2001–Sept 2003</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"color: #ff9335; font-family: quicksandreg;\"> Ogilvy &amp; Mather Advertising, Creative Supervisor/Copywriter </span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.69\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|3%|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|phone\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<ul>\r\n 	<li style=\"margin-left: 15px;\">Supervised the retail creative advertising team on the $500+ million AT&amp;T Wireless account and launched the “mLife” campaign nationwide. This included national retail print and local market radio. Produced 60 radio spots in two years</li>\r\n 	<li style=\"margin-left: 15px;\">Established AT&amp;T Wireless as the number two consumer cell phone carrier in the U.S.</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|26px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">June 1996–July 2001</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Position\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\"> Lowe Lintas Advertising, Senior Copywriter</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\" custom_margin=\"|5%|0px|\" custom_margin_phone=\"|5%|0px|\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\nCreated award-winning direct response advertising for a wide variety of clients, including the Berger Funds, Cunard, Dell, RCN and MONY (Life Insurance and Variable Annuities).\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Education Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"color: #cc6666; font-family: quicksandreg;\">Education</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Date\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">1989</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"University\" _builder_version=\"3.0.65\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">Columbia University, BA, Political Science</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Awards Title\" _builder_version=\"3.0.69\" text_font=\"|on|||\" text_text_color=\"#ff9335\" text_font_size=\"18px\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<strong><span style=\"font-family: quicksandlight;\">Awards</span></strong>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|25px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"13\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_line_height=\"1.5em\"]\r\n\r\nBurke Award (J&amp;J)\r\nCaples\r\nCreativity Magazine\r\nMark (Cable and Telecommunications Association for Marketing)\r\nNY ADDY\r\nWebAward\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button button_url=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/JFeldman_AwardWinningCD.pdf\" url_new_window=\"on\" button_text=\"Download my resume\" button_alignment=\"left\" module_class=\"et-download-button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"14px\" button_text_color=\"#8bc34a\" button_bg_color=\"rgba(0,0,0,0)\" button_border_width=\"0px\" button_border_radius=\"0\" button_font=\"Roboto|on|||\" button_use_icon=\"on\" button_icon=\"%%266%%\" button_icon_color=\"#8bc34a\" button_on_hover=\"off\" button_text_color_hover=\"rgba(31,73,125,0.76)\" button_border_radius_hover=\"0\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','My Resume','','inherit','closed','closed','','46-revision-v1','','','2017-08-15 15:48:29','2017-08-15 19:48:29','',46,'http://copyvet.globat.com/wordpress/46-revision-v1/',0,'revision','',0),(27345,1,'2017-08-15 18:45:17','2017-08-15 22:45:17','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Speed Demons</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#ff9335\" text_line_height=\"0px\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL STRATEGY AND PRACTICE</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#212121\" text_line_height=\"1.5em\" text_line_height_phone=\"1.5em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]\r\n\r\nConvincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_2','','inherit','closed','closed','','27293-revision-v1','','','2017-08-15 18:45:17','2017-08-15 22:45:17','',27293,'http://copyvet.globat.com/wordpress/27293-revision-v1/',0,'revision','',0),(27348,1,'2017-08-16 19:52:30','2017-08-16 23:52:30','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/NYPL.Background.black_.MIDTONE.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" global_module=\"27416\" saved_tabs=\"all\"]<p><span style=\"font-family: quicksandlight;\">Just For Kids</span></p>\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.69\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_font_size_tablet=\"20px\" text_font_size_phone=\"20px\" text_text_color=\"#ff9335\" text_letter_spacing_tablet=\"0px\" text_letter_spacing_phone=\"0px\" text_line_height_tablet=\"1.7em\" text_line_height_phone=\"1.7em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_tablet=\"24px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_letter_spacing_tablet=\"0px\" header_letter_spacing_phone=\"0px\" header_line_height=\"0\" header_line_height_tablet=\"0\" header_line_height_phone=\"0\" custom_margin=\"0px||0px|\" custom_margin_tablet=\"0px||0px|\" custom_margin_phone=\"0px||0px|\" custom_padding=\"11px||5%|\" custom_padding_tablet=\"11px||5%|\" custom_padding_phone=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','publish','closed','closed','','1_14','','','2017-09-11 23:53:11','2017-09-12 03:53:11','',44,'http://copyvet.globat.com/wordpress/?page_id=27348',0,'page','',0),(27349,1,'2017-08-16 19:52:30','2017-08-16 23:52:30','','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-16 19:52:30','2017-08-16 23:52:30','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27350,1,'2017-08-16 19:53:25','2017-08-16 23:53:25','','NYPL','','publish','closed','closed','','nypl','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',44,'http://copyvet.globat.com/wordpress/?p=27350',8,'nav_menu_item','',0),(27355,1,'2017-08-16 19:57:38','2017-08-16 23:57:38','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<p><span style=\"font-family: quicksandlight;\">Speed Demons</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<p><span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span></p>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-16 19:57:38','2017-08-16 23:57:38','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27358,1,'2017-08-16 20:02:32','2017-08-17 00:02:32','','1_14-02','','inherit','open','closed','','1_14-02','','','2017-08-16 20:02:32','2017-08-17 00:02:32','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_14-02.jpg',0,'attachment','image/jpeg',0),(27359,1,'2017-08-16 20:02:34','2017-08-17 00:02:34','','1_14-03','','inherit','open','closed','','1_14-03','','','2017-08-16 20:02:34','2017-08-17 00:02:34','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_14-03.jpg',0,'attachment','image/jpeg',0),(27360,1,'2017-08-16 20:02:37','2017-08-17 00:02:37','','1_14-04','','inherit','open','closed','','1_14-04','','','2017-08-16 20:02:37','2017-08-17 00:02:37','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_14-04.jpg',0,'attachment','image/jpeg',0),(27361,1,'2017-08-16 20:04:30','2017-08-17 00:04:30','','1_14-01','','inherit','open','closed','','1_14-01','','','2017-08-16 20:04:30','2017-08-17 00:04:30','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_14-01.jpg',0,'attachment','image/jpeg',0),(27362,1,'2017-08-16 20:05:09','2017-08-17 00:05:09','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">Just For Kids</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-16 20:05:09','2017-08-17 00:05:09','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27364,1,'2017-08-16 20:05:50','2017-08-17 00:05:50','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<p><span style=\"font-family: quicksandlight;\">Just For Kids</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span></p>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span></p>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-16 20:05:50','2017-08-17 00:05:50','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27366,1,'2017-08-16 20:08:57','2017-08-17 00:08:57','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<p><span style=\"font-family: quicksandlight;\">Just For Kids</span></p>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" module_id=\"Portfolio–Subhead\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span></p>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-03.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-16 20:08:57','2017-08-17 00:08:57','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27368,1,'2017-08-16 20:10:28','2017-08-17 00:10:28','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<p><span style=\"font-family: quicksandlight;\">Just For Kids</span></p>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.69\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span></p>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-03.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-16 20:10:28','2017-08-17 00:10:28','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27370,1,'2017-08-16 20:17:16','2017-08-17 00:17:16','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.69\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Just For Kids</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.69\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-03.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-16 20:17:16','2017-08-17 00:17:16','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27372,0,'2017-08-19 00:19:35','2017-08-19 04:19:35','','Auto Draft','','inherit','closed','closed','','27312-revision-v1','','','2017-08-19 00:19:35','2017-08-19 04:19:35','',27312,'http://copyvet.globat.com/wordpress/27312-revision-v1/',0,'revision','',0),(27374,5,'2017-08-21 06:44:06','2017-08-21 10:44:06','','Auto Draft','','trash','open','open','','__trashed-2','','','2017-08-23 04:38:47','2017-08-23 08:38:47','',0,'http://copyvet.globat.com/wordpress/?p=27374',0,'post','',0),(27378,0,'2017-08-23 04:38:47','2017-08-23 08:38:47','','Auto Draft','','inherit','closed','closed','','27374-revision-v1','','','2017-08-23 04:38:47','2017-08-23 08:38:47','',27374,'http://copyvet.globat.com/wordpress/27374-revision-v1/',0,'revision','',0),(27380,6,'2017-08-24 06:14:23','2017-08-24 10:14:23','','Auto Draft','','trash','open','open','','__trashed-3','','','2017-08-25 12:40:58','2017-08-25 16:40:58','',0,'http://copyvet.globat.com/wordpress/?p=27380',0,'post','',0),(27383,1,'2017-08-25 12:40:58','2017-08-25 16:40:58','','Auto Draft','','inherit','closed','closed','','27380-revision-v1','','','2017-08-25 12:40:58','2017-08-25 16:40:58','',27380,'http://copyvet.globat.com/wordpress/27380-revision-v1/',0,'revision','',0),(27385,7,'2017-08-27 03:45:32','2017-08-27 07:45:32','','Auto Draft','','trash','open','open','','__trashed-4','','','2017-08-29 16:58:30','2017-08-29 20:58:30','',0,'http://copyvet.globat.com/wordpress/?p=27385',0,'post','',0),(27386,7,'2017-08-27 03:51:51','2017-08-27 07:51:51','[et_pb_section admin_label=\"section\"]\n		[et_pb_row admin_label=\"row\"]\n			[et_pb_column type=\"4_4\"]\n				[et_pb_text admin_label=\"Text\"]\n					\n				[/et_pb_text]\n			[/et_pb_column]\n		[/et_pb_row]\n	[/et_pb_section]','test','','trash','closed','closed','','test__trashed','','','2017-08-29 16:58:30','2017-08-29 20:58:30','',0,'http://copyvet.globat.com/wordpress/?page_id=27386',0,'page','',0),(27389,1,'2017-08-27 21:05:04','2017-08-28 01:05:04','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media only screen and (max-width: 440px){\n.page-id-0 input[type=\"submit\"] {\nmargin-top: 5%;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:05:04','2017-08-28 01:05:04','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27390,1,'2017-08-27 21:05:58','2017-08-28 01:05:58','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 10%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 20px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:05:58','2017-08-28 01:05:58','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27391,1,'2017-08-27 21:08:08','2017-08-28 01:08:08','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 10%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 24px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:08:08','2017-08-28 01:08:08','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27392,1,'2017-08-27 21:08:48','2017-08-28 01:08:48','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 8%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 26px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:08:48','2017-08-28 01:08:48','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27393,1,'2017-08-27 21:09:14','2017-08-28 01:09:14','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 6%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 28px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:09:14','2017-08-28 01:09:14','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27394,1,'2017-08-27 21:09:46','2017-08-28 01:09:46','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 6%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:09:46','2017-08-28 01:09:46','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0);
INSERT INTO `wp_xyud_posts` VALUES (27395,1,'2017-08-27 21:10:05','2017-08-28 01:10:05','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 2%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:10:05','2017-08-28 01:10:05','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27396,1,'2017-08-27 21:10:19','2017-08-28 01:10:19','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:10:19','2017-08-28 01:10:19','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27397,1,'2017-08-27 21:10:44','2017-08-28 01:10:44','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.6em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 34px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:10:44','2017-08-28 01:10:44','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27398,1,'2017-08-27 21:11:29','2017-08-28 01:11:29','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.3em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:11:29','2017-08-28 01:11:29','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27399,1,'2017-08-27 21:12:24','2017-08-28 01:12:24','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.3em 0.5em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:12:24','2017-08-28 01:12:24','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27400,1,'2017-08-27 21:13:02','2017-08-28 01:13:02','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.9em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:13:02','2017-08-28 01:13:02','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27401,1,'2017-08-27 21:13:25','2017-08-28 01:13:25','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.7em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%;\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:13:25','2017-08-28 01:13:25','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27402,1,'2017-08-27 21:14:50','2017-08-28 01:14:50','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.7em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%; {\npadding-bottom: 1%\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:14:50','2017-08-28 01:14:50','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27403,1,'2017-08-27 21:15:12','2017-08-28 01:15:12','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.7em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%; {\npadding-bottom: 3%\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:15:12','2017-08-28 01:15:12','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27404,1,'2017-08-27 21:15:29','2017-08-28 01:15:29','/* CAPTCHA */\n.et_pb_contact_right p input {\n    max-width: 55px  !important;\n    max-height: 32px  !important;\n}\n.et_pb_contact {\ncolor: #fff;\nfont-size: 14px;\n}\n\n.entry-content ul {\n   line-height: 20px !important;\n}\n\n.page-id-0 #main-content {\nbackground-color: #1f497d!important;\n}\n\n.page-id-0 #sidebar {\ndisplay: none;\n}\n\n.page-id-0 #main-content .container:before {\ndisplay: none;\n}\n\n.page-id-0 #left-area {\nwidth: 100% !important;\n}\n@media only screen and (min-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 45px;\nfont-family: quicksandreg;\nmargin-bottom: 0;\npadding-bottom: 0;\n}}\n@media only screen and (max-width: 981px){\n.page-id-0 h1.entry-title.main_title {\nfont-size: 30px;\nfont-family: quicksandreg;\nline-height: 1.1em;\n}}\n\n.page-id-0 #category-login p {\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\nmargin-bottom: 4%;\n}\n\n.page-id-0 .ppc-password-label input {\nmargin-left: 10px;\n}\n\n.page-id-0 #left-area {\nheight: calc(100vh - 78px);\n}\n.page-id-0 #left-area .hentry {\npadding-top: 30vh;\n}\n.page-id-0 input[type=\"submit\"]:hover {\ncolor: #bef67a !important;\nbackground: #5374ad !important;\nborder-radius: 4px;\nletter-spacing: 0px;\npadding-left: 0.7em;\npadding-right: 0.7em;\n}\n.page-id-0 input[type=\"submit\"] {\ncolor: #8bc34a!important;\nbackground: #002250;\nborder-width: 2px!important;\nborder-color: #eceff1;\nborder-radius: 4px;\nletter-spacing: 0px;\nfont-size: 14px;\nfont-family: \'Open Sans\'!important;\nfont-weight: bold!important;\npadding: 0.7em 1em;\n}\n@media (max-width: 767px){\n.page-id-0 #left-area .hentry {\npadding-top: 1%; {\npadding-bottom: 10%\n}\n.page-id-0 h1.entry-title.main_title {\nfont-size: 36px;\n}\n}','Divi','','inherit','closed','closed','','25815-revision-v1','','','2017-08-27 21:15:29','2017-08-28 01:15:29','',25815,'http://copyvet.globat.com/wordpress/25815-revision-v1/',0,'revision','',0),(27405,1,'2017-08-27 21:21:24','2017-08-28 01:21:24','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.69\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Just For Kids</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.69\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-03.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-27 21:21:24','2017-08-28 01:21:24','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27407,1,'2017-08-27 21:25:35','2017-08-28 01:25:35','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.69\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-A.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.69\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Just For Kids</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.69\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.70\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-27 21:25:35','2017-08-28 01:25:35','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27409,1,'2017-08-27 21:28:54','2017-08-28 01:28:54','','NYPL.Background.black.MIDTONE','','inherit','open','closed','','nypl-background-black-midtone','','','2017-08-27 21:28:54','2017-08-28 01:28:54','',27348,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/NYPL.Background.black_.MIDTONE.jpg',0,'attachment','image/jpeg',0),(27410,1,'2017-08-27 21:29:24','2017-08-28 01:29:24','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.70\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/NYPL.Background.black_.MIDTONE.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.69\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Just For Kids</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.69\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.70\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-27 21:29:24','2017-08-28 01:29:24','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27411,1,'2017-08-28 08:20:56','2017-08-28 12:20:56','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:20:56','2017-08-28 12:20:56','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27412,1,'2017-08-28 08:21:44','2017-08-28 12:21:44','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:21:44','2017-08-28 12:21:44','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27414,1,'2017-08-28 08:23:40','2017-08-28 12:23:40','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:23:40','2017-08-28 12:23:40','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27415,1,'2017-08-28 08:24:59','2017-08-28 12:24:59','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.70\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:24:59','2017-08-28 12:24:59','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27416,1,'2017-08-28 08:26:46','2017-08-28 12:26:46','[et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p><span style=\"font-family: quicksandlight;\">Just For Kids</span></p>\n\n[/et_pb_text]','Portfolio Subhead','','publish','closed','closed','','portfolio-subhead','','','2017-08-28 08:26:46','2017-08-28 12:26:46','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-subhead/',0,'et_pb_layout','',0),(27417,1,'2017-08-28 08:27:29','2017-08-28 12:27:29','[et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" background_color=\"\" background_image=\"\" background_video_mp4=\"\" background_video_webm=\"\" background_video_width=\"\" background_video_height=\"\" text_font_size_last_edited=\"\" text_letter_spacing_last_edited=\"\" header_letter_spacing_last_edited=\"\" header_line_height_last_edited=\"\" border_style=\"solid\" max_width=\"\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"\" custom_margin_last_edited=\"\" custom_padding_last_edited=\"\" module_class=\"\" custom_css_before=\"\" custom_css_main_element=\"\" custom_css_after=\"\" disabled=\"\" disabled_on=\"\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_font_size_tablet=\"20px\" text_font_size_phone=\"20px\" text_letter_spacing=\"0px\" text_letter_spacing_tablet=\"0px\" text_letter_spacing_phone=\"0px\" text_line_height=\"1.7em\" text_line_height_tablet=\"1.7em\" text_line_height_phone=\"1.7em\" header_font_size_tablet=\"24px\" header_font_size_phone=\"24px\" header_letter_spacing=\"0px\" header_letter_spacing_tablet=\"0px\" header_letter_spacing_phone=\"0px\" header_line_height_tablet=\"0\" header_line_height_phone=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_width=\"1px\" custom_margin_tablet=\"0px||0px|\" custom_margin_phone=\"0px||0px|\" custom_padding_tablet=\"11px||5%|\" custom_padding_phone=\"11px||5%|\" template_type=\"module\"]\n\n<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>\n\n[/et_pb_text]','Portfolio Subhead 1','','publish','closed','closed','','portfolio-subhead-1','','','2017-08-28 09:13:40','2017-08-28 13:13:40','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-subhead-1/',0,'et_pb_layout','',0),(27418,1,'2017-08-28 08:27:35','2017-08-28 12:27:35','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.70\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/NYPL.Background.black_.MIDTONE.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\" saved_tabs=\"all\" global_module=\"27416\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Just For Kids</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.69\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27417\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.70\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-28 08:27:35','2017-08-28 12:27:35','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27419,1,'2017-08-28 08:28:46','2017-08-28 12:28:46','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.70\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27417\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:28:46','2017-08-28 12:28:46','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27420,1,'2017-08-28 08:29:59','2017-08-28 12:29:59','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" text_letter_spacing_last_edited=\"on|phone\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.70\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27417\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:29:59','2017-08-28 12:29:59','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27422,1,'2017-08-28 08:32:41','2017-08-28 12:32:41','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.70\" height=\"15\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:32:41','2017-08-28 12:32:41','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27423,1,'2017-08-28 08:33:58','2017-08-28 12:33:58','[et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" template_type=\"module\"]<p>Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.</p>[/et_pb_text]','Portfolio Sidebar Text','','publish','closed','closed','','portfolio-sidebar-text','','','2017-08-28 09:08:08','2017-08-28 13:08:08','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-sidebar-text/',0,'et_pb_layout','',0),(27424,1,'2017-08-28 08:34:13','2017-08-28 12:34:13','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.70\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/NYPL.Background.black_.MIDTONE.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\" saved_tabs=\"all\" global_module=\"27416\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Just For Kids</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.69\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27417\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27423\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.70\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-28 08:34:13','2017-08-28 12:34:13','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27425,1,'2017-08-28 08:35:09','2017-08-28 12:35:09','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUN CHEMICAL BRANDING</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"] Sun Chemical is the world\'s largest ink and pigment manufacturer. (Bet you didn\'t know that—in fact, most people don\'t.) We updated their brand to spread the word. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27423\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.70\" height=\"15\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:35:09','2017-08-28 12:35:09','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27426,1,'2017-08-28 08:35:42','2017-08-28 12:35:42','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27423\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.70\" height=\"15\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:35:42','2017-08-28 12:35:42','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27428,1,'2017-08-28 08:38:40','2017-08-28 12:38:40','[et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" module_id=\"Portfolio–Subhead\" template_type=\"module\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>\n[/et_pb_text]','Portfolio Subhead 1','','inherit','closed','closed','','27417-revision-v1','','','2017-08-28 08:38:40','2017-08-28 12:38:40','',27417,'http://copyvet.globat.com/wordpress/27417-revision-v1/',0,'revision','',0),(27429,1,'2017-08-28 08:38:49','2017-08-28 12:38:49','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\" module_id=\"Portfolio–Subhead\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 08:38:49','2017-08-28 12:38:49','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27430,1,'2017-08-28 08:45:24','2017-08-28 12:45:24','','1_4-03','','inherit','open','closed','','1_4-03','','','2017-08-28 08:45:24','2017-08-28 12:45:24','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_4-03.jpg',0,'attachment','image/jpeg',0),(27431,1,'2017-08-28 08:45:34','2017-08-28 12:45:34','','1_4-04','','inherit','open','closed','','1_4-04','','','2017-08-28 08:45:34','2017-08-28 12:45:34','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_4-04.jpg',0,'attachment','image/jpeg',0),(27432,1,'2017-08-28 08:45:36','2017-08-28 12:45:36','','1_4-05','','inherit','open','closed','','1_4-05','','','2017-08-28 08:45:36','2017-08-28 12:45:36','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_4-05.jpg',0,'attachment','image/jpeg',0),(27433,1,'2017-08-28 08:47:08','2017-08-28 12:47:08','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\" custom_padding_phone=\"1%||0px|\" custom_padding_last_edited=\"on|phone\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" module_id=\"Portfolio–Subhead\"]<p><span style=\"font-family: quicksandreg;\">A BANK WITH NO TELLERS, NO PAPER AND NO HASSLES</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Millennials prefer to bank by app and not to visit brick and mortar branches. To keep their bank retail branch network relevant to customers, my team helped Citibank reimagine the bank branch as a digital experience. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-01.jpg\" play_icon_color=\"#eceff1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nOur interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','publish','closed','closed','','1_4','','','2017-09-11 23:53:12','2017-09-12 03:53:12','',44,'http://copyvet.globat.com/wordpress/?page_id=27433',0,'page','',0),(27434,1,'2017-08-28 08:47:08','2017-08-28 12:47:08','','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 08:47:08','2017-08-28 12:47:08','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27435,1,'2017-08-28 08:48:46','2017-08-28 12:48:46','','CITIBANK','','publish','closed','closed','','citibank','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',44,'http://copyvet.globat.com/wordpress/?p=27435',6,'nav_menu_item','',0),(27436,1,'2017-08-28 08:51:48','2017-08-28 12:51:48','<p>[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]</p><p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p><p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]</p><p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p><p>[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\" module_id=\"Portfolio–Subhead\"]</p><p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p><p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]</p><p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Portfolio Video Page Template','','publish','closed','closed','','portfolio-video-page-template','','','2017-08-28 08:51:48','2017-08-28 12:51:48','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-video-page-template/',0,'et_pb_layout','',0),(27437,1,'2017-08-28 08:53:25','2017-08-28 12:53:25','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\" module_id=\"Portfolio–Subhead\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 08:53:25','2017-08-28 12:53:25','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27439,1,'2017-08-28 08:57:47','2017-08-28 12:57:47','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 08:57:47','2017-08-28 12:57:47','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27441,1,'2017-08-28 08:59:34','2017-08-28 12:59:34','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 08:59:34','2017-08-28 12:59:34','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27443,1,'2017-08-28 09:00:22','2017-08-28 13:00:22','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:00:22','2017-08-28 13:00:22','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27445,1,'2017-08-28 09:05:40','2017-08-28 13:05:40','[et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" template_type=\"module\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSLES</span></p>[/et_pb_text]','Portfolio Subhead 1','','inherit','closed','closed','','27417-revision-v1','','','2017-08-28 09:05:40','2017-08-28 13:05:40','',27417,'http://copyvet.globat.com/wordpress/27417-revision-v1/',0,'revision','',0),(27446,1,'2017-08-28 09:08:08','2017-08-28 13:08:08','[et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" template_type=\"module\"]<p>Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.</p>[/et_pb_text]','Portfolio Sidebar Text','','inherit','closed','closed','','27423-revision-v1','','','2017-08-28 09:08:08','2017-08-28 13:08:08','',27423,'http://copyvet.globat.com/wordpress/27423-revision-v1/',0,'revision','',0),(27447,1,'2017-08-28 09:08:17','2017-08-28 13:08:17','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSLES</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:08:17','2017-08-28 13:08:17','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27448,1,'2017-08-28 09:09:17','2017-08-28 13:09:17','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSLES</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]\r\n\r\nMost Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSLES</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]\r\n\r\nMost Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:09:17','2017-08-28 13:09:17','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27449,1,'2017-08-28 09:10:53','2017-08-28 13:10:53','[et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" template_type=\"module\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSL</span></p>[/et_pb_text]','Portfolio Subhead 1','','inherit','closed','closed','','27417-revision-v1','','','2017-08-28 09:10:53','2017-08-28 13:10:53','',27417,'http://copyvet.globat.com/wordpress/27417-revision-v1/',0,'revision','',0),(27451,1,'2017-08-28 09:11:39','2017-08-28 13:11:39','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSL</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSL</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:11:39','2017-08-28 13:11:39','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27452,1,'2017-08-28 09:13:06','2017-08-28 13:13:06','[et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" background_color=\"\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" background_image=\"\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" background_video_mp4=\"\" background_video_webm=\"\" background_video_width=\"\" background_video_height=\"\" allow_player_pause=\"off\" text_font_size_tablet=\"20px\" text_font_size_phone=\"20px\" text_font_size_last_edited=\"\" text_letter_spacing=\"0px\" text_letter_spacing_tablet=\"0px\" text_letter_spacing_phone=\"0px\" text_letter_spacing_last_edited=\"\" text_line_height=\"1.7em\" text_line_height_tablet=\"1.7em\" text_line_height_phone=\"1.7em\" header_font_size_tablet=\"24px\" header_font_size_phone=\"24px\" header_letter_spacing=\"0px\" header_letter_spacing_tablet=\"0px\" header_letter_spacing_phone=\"0px\" header_letter_spacing_last_edited=\"\" header_line_height_tablet=\"0\" header_line_height_phone=\"0\" header_line_height_last_edited=\"\" use_border_color=\"off\" border_color=\"#ffffff\" border_width=\"1px\" border_style=\"solid\" max_width=\"\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"\" custom_margin_tablet=\"0px||0px|\" custom_margin_phone=\"0px||0px|\" custom_margin_last_edited=\"\" custom_padding_tablet=\"11px||5%|\" custom_padding_phone=\"11px||5%|\" custom_padding_last_edited=\"\" module_class=\"\" custom_css_before=\"\" custom_css_main_element=\"\" custom_css_after=\"\" disabled=\"\" disabled_on=\"\" template_type=\"module\"]\n\n<p>CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</p>\n\n[/et_pb_text]','Portfolio Subhead 1','','inherit','closed','closed','','27417-revision-v1','','','2017-08-28 09:13:06','2017-08-28 13:13:06','',27417,'http://copyvet.globat.com/wordpress/27417-revision-v1/',0,'revision','',0),(27453,1,'2017-08-28 09:13:12','2017-08-28 13:13:12','[et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" background_color=\"\" background_image=\"\" background_video_mp4=\"\" background_video_webm=\"\" background_video_width=\"\" background_video_height=\"\" text_font_size_last_edited=\"\" text_letter_spacing_last_edited=\"\" header_letter_spacing_last_edited=\"\" header_line_height_last_edited=\"\" border_style=\"solid\" max_width=\"\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"\" custom_margin_last_edited=\"\" custom_padding_last_edited=\"\" module_class=\"\" custom_css_before=\"\" custom_css_main_element=\"\" custom_css_after=\"\" disabled=\"\" disabled_on=\"\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_font_size_tablet=\"20px\" text_font_size_phone=\"20px\" text_letter_spacing=\"0px\" text_letter_spacing_tablet=\"0px\" text_letter_spacing_phone=\"0px\" text_line_height=\"1.7em\" text_line_height_tablet=\"1.7em\" text_line_height_phone=\"1.7em\" header_font_size_tablet=\"24px\" header_font_size_phone=\"24px\" header_letter_spacing=\"0px\" header_letter_spacing_tablet=\"0px\" header_letter_spacing_phone=\"0px\" header_line_height_tablet=\"0\" header_line_height_phone=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_width=\"1px\" custom_margin_tablet=\"0px||0px|\" custom_margin_phone=\"0px||0px|\" custom_padding_tablet=\"11px||5%|\" custom_padding_phone=\"11px||5%|\" template_type=\"module\"]\n\n<p>CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</p>\n\n[/et_pb_text]','Portfolio Subhead 1','','inherit','closed','closed','','27417-revision-v1','','','2017-08-28 09:13:12','2017-08-28 13:13:12','',27417,'http://copyvet.globat.com/wordpress/27417-revision-v1/',0,'revision','',0),(27455,1,'2017-08-28 09:13:32','2017-08-28 13:13:32','[et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" background_color=\"\" background_image=\"\" background_video_mp4=\"\" background_video_webm=\"\" background_video_width=\"\" background_video_height=\"\" text_font_size_last_edited=\"\" text_letter_spacing_last_edited=\"\" header_letter_spacing_last_edited=\"\" header_line_height_last_edited=\"\" border_style=\"solid\" max_width=\"\" max_width_tablet=\"\" max_width_phone=\"\" max_width_last_edited=\"\" custom_margin_last_edited=\"\" custom_padding_last_edited=\"\" module_class=\"\" custom_css_before=\"\" custom_css_main_element=\"\" custom_css_after=\"\" disabled=\"\" disabled_on=\"\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" text_font_size_tablet=\"20px\" text_font_size_phone=\"20px\" text_letter_spacing=\"0px\" text_letter_spacing_tablet=\"0px\" text_letter_spacing_phone=\"0px\" text_line_height=\"1.7em\" text_line_height_tablet=\"1.7em\" text_line_height_phone=\"1.7em\" header_font_size_tablet=\"24px\" header_font_size_phone=\"24px\" header_letter_spacing=\"0px\" header_letter_spacing_tablet=\"0px\" header_letter_spacing_phone=\"0px\" header_line_height_tablet=\"0\" header_line_height_phone=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_width=\"1px\" custom_margin_tablet=\"0px||0px|\" custom_margin_phone=\"0px||0px|\" custom_padding_tablet=\"11px||5%|\" custom_padding_phone=\"11px||5%|\" template_type=\"module\"]\n\n<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>\n\n[/et_pb_text]','Portfolio Subhead 1','','inherit','closed','closed','','27417-revision-v1','','','2017-08-28 09:13:32','2017-08-28 13:13:32','',27417,'http://copyvet.globat.com/wordpress/27417-revision-v1/',0,'revision','',0),(27456,1,'2017-08-28 09:13:43','2017-08-28 13:13:43','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"] <span style=\"font-family: quicksandreg;\">THE DIGITAL BRANCH: NO TELLERS, NO PAPER, NO HASSL</span> [/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"] Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"] Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:13:43','2017-08-28 13:13:43','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27457,1,'2017-08-28 09:16:27','2017-08-28 13:16:27','[et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" template_type=\"module\"]\n\n<p><span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span></p>\n\n[/et_pb_text]','Portfolio Subhead 2','','publish','closed','closed','','portfolio-subhead-2','','','2017-08-28 09:16:27','2017-08-28 13:16:27','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-subhead-2/',0,'et_pb_layout','',0),(27458,1,'2017-08-28 09:16:37','2017-08-28 13:16:37','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Speed Demons</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|phone\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#212121\" text_line_height=\"1.5em\" text_line_height_phone=\"1.5em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]\r\n\r\nConvincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_2','','inherit','closed','closed','','27293-revision-v1','','','2017-08-28 09:16:37','2017-08-28 13:16:37','',27293,'http://copyvet.globat.com/wordpress/27293-revision-v1/',0,'revision','',0),(27459,1,'2017-08-28 09:17:22','2017-08-28 13:17:22','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"] Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"] Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience. [/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:17:22','2017-08-28 13:17:22','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27460,1,'2017-08-28 09:19:43','2017-08-28 13:19:43','[et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" template_type=\"module\"]\n\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n\n[/et_pb_text]','Portfolio Text 2','','publish','closed','closed','','portfolio-text-2','','','2017-08-28 09:19:43','2017-08-28 13:19:43','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-text-2/',0,'et_pb_layout','',0),(27461,1,'2017-08-28 09:20:05','2017-08-28 13:20:05','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Speed Demons</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|phone\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#212121\" text_line_height=\"1.5em\" text_line_height_phone=\"1.5em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]\r\n\r\nConvincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_2','','inherit','closed','closed','','27293-revision-v1','','','2017-08-28 09:20:05','2017-08-28 13:20:05','',27293,'http://copyvet.globat.com/wordpress/27293-revision-v1/',0,'revision','',0),(27462,1,'2017-08-28 09:21:00','2017-08-28 13:21:00','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:21:00','2017-08-28 13:21:00','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27464,1,'2017-08-28 09:26:24','2017-08-28 13:26:24','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">NO TELLERS, NO PAPER, NO HASSLES</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Most Millennials would prefer to use digital apps than to visit a brick and mortar bank branch. Too keep its retail banking network relevant, my team helped Citibank reimagine branch banking.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">CAPTURING TEH IMAGINATIONS OF BUSY NEW YORKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>New Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:26:24','2017-08-28 13:26:24','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27467,1,'2017-08-28 09:29:31','2017-08-28 13:29:31','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">NO TELLERS, NO PAPER, NO HASSLES</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nMost Millennials would prefer to use digital apps than to visit a brick and mortar bank branch. Too keep its retail banking network relevant, my team helped Citibank reimagine branch banking.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING TEH IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING TEH IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:29:31','2017-08-28 13:29:31','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27469,1,'2017-08-28 09:38:48','2017-08-28 13:38:48','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">NO TELLERS, NO PAPER, NO HASSLES</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nMost Millennials would prefer to use digital apps than to visit a brick and mortar bank branch. Too keep its retail banking network relevant, my team helped Citibank reimagine branch banking.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"1%||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"1%||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Our interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"3%|||\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:38:48','2017-08-28 13:38:48','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27470,1,'2017-08-28 09:39:39','2017-08-28 13:39:39','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">NO TELLERS, NO PAPER, NO HASSLES</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nMost Millennials would prefer to use digital apps than to visit a brick and mortar bank branch. Too keep its retail banking network relevant, my team helped Citibank reimagine branch banking.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"1%||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"1%||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Our interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"3%|||\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:39:39','2017-08-28 13:39:39','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27472,1,'2017-08-28 09:44:41','2017-08-28 13:44:41','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding_phone=\"||0px|\" custom_padding=\"||1%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">NO TELLERS, NO PAPER, NO HASSLES</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nMost Millennials would prefer to use digital apps than to visit a brick and mortar bank branch. Too keep its retail banking network relevant, my team helped Citibank reimagine branch banking.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding_phone=\"0px||1%|\" custom_padding=\"||1%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px|0px|20px|0px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"1%||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Our interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"3%|||\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 09:44:41','2017-08-28 13:44:41','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27474,1,'2017-08-28 09:47:26','2017-08-28 13:47:26','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\n\n<p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\n\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\n\n<p><span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span></p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]\n\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-autosave-v1','','','2017-08-28 09:47:26','2017-08-28 13:47:26','',52,'http://copyvet.globat.com/wordpress/52-autosave-v1/',0,'revision','',0),(27475,1,'2017-08-28 09:47:34','2017-08-28 13:47:34','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 09:47:34','2017-08-28 13:47:34','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27476,1,'2017-08-28 09:51:19','2017-08-28 13:51:19','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"525px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"30px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE COGNIZANT BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row custom_padding=\"0px||0px|\" _builder_version=\"3.0.70\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nCognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nToday, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','publish','closed','closed','','1_5','','','2017-09-11 23:53:12','2017-09-12 03:53:12','',44,'http://copyvet.globat.com/wordpress/?page_id=27476',0,'page','',0),(27477,1,'2017-08-28 09:51:19','2017-08-28 13:51:19','','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 09:51:19','2017-08-28 13:51:19','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27478,1,'2017-08-28 09:52:20','2017-08-28 13:52:20','','COGNIZANT','','publish','closed','closed','','cognizant','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',44,'http://copyvet.globat.com/wordpress/?p=27478',7,'nav_menu_item','',0),(27480,1,'2017-08-28 09:54:36','2017-08-28 13:54:36','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 09:54:36','2017-08-28 13:54:36','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27481,1,'2017-08-28 09:55:52','2017-08-28 13:55:52','','1_5-02','','inherit','open','closed','','1_5-02','','','2017-08-28 09:55:52','2017-08-28 13:55:52','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_5-02.jpg',0,'attachment','image/jpeg',0),(27482,1,'2017-08-28 09:55:56','2017-08-28 13:55:56','','1_5-03','','inherit','open','closed','','1_5-03','','','2017-08-28 09:55:56','2017-08-28 13:55:56','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_5-03.jpg',0,'attachment','image/jpeg',0),(27483,1,'2017-08-28 09:55:59','2017-08-28 13:55:59','','1_5-04','','inherit','open','closed','','1_5-04','','','2017-08-28 09:55:59','2017-08-28 13:55:59','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_5-04.jpg',0,'attachment','image/jpeg',0),(27484,1,'2017-08-28 09:56:03','2017-08-28 13:56:03','','1_5-05','','inherit','open','closed','','1_5-05','','','2017-08-28 09:56:03','2017-08-28 13:56:03','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_5-05.jpg',0,'attachment','image/jpeg',0),(27485,1,'2017-08-28 09:56:06','2017-08-28 13:56:06','','1_5-06','','inherit','open','closed','','1_5-06','','','2017-08-28 09:56:06','2017-08-28 13:56:06','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_5-06.jpg',0,'attachment','image/jpeg',0),(27486,1,'2017-08-28 10:21:52','2017-08-28 14:21:52','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"off\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"off\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"off\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"off\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" always_center_on_mobile=\"on\" border_style=\"solid\" force_fullwidth=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 10:21:52','2017-08-28 14:21:52','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27487,1,'2017-08-28 10:23:03','2017-08-28 14:23:03','','1_4-01','','inherit','open','closed','','1_4-01','','','2017-08-28 10:23:03','2017-08-28 14:23:03','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_4-01.jpg',0,'attachment','image/jpeg',0),(27489,1,'2017-08-28 10:24:23','2017-08-28 14:24:23','','1_4-02','','inherit','open','closed','','1_4-02','','','2017-08-28 10:24:23','2017-08-28 14:24:23','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_4-02.jpg',0,'attachment','image/jpeg',0),(27490,1,'2017-08-28 10:24:56','2017-08-28 14:24:56','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"||1%|\" custom_padding_phone=\"||0px|\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">NO TELLERS, NO PAPER, NO HASSLES</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nMost Millennials would prefer to use digital apps than to visit a brick and mortar bank branch. Too keep its retail banking network relevant, my team helped Citibank reimagine branch banking.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-01.jpg\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"||1%|\" custom_padding_phone=\"0px||1%|\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.70\"][et_pb_row custom_padding=\"0px|0px|20px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Our interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 10:24:56','2017-08-28 14:24:56','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27491,1,'2017-08-28 10:25:56','2017-08-28 14:25:56','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"||1%|\" custom_padding_phone=\"0px||1%|\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.70\"][et_pb_row custom_padding=\"0px|0px|20px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nOur interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 10:25:56','2017-08-28 14:25:56','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27492,1,'2017-08-28 10:26:56','2017-08-28 14:26:56','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nOur interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 10:26:56','2017-08-28 14:26:56','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27493,1,'2017-08-28 10:27:57','2017-08-28 14:27:57','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231323761\" play_icon_color=\"#eceff1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nOur interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231324604\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 10:27:57','2017-08-28 14:27:57','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27494,1,'2017-08-28 10:28:33','2017-08-28 14:28:33','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-01.jpg\" play_icon_color=\"#eceff1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nOur interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 10:28:33','2017-08-28 14:28:33','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27496,1,'2017-08-28 10:33:55','2017-08-28 14:33:55','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"] <span style=\"font-family: quicksandlight;\">BANKING FOR MILLENNIALS</span> [/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE CITIBANK DIGITAL BANK BRANCH\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\" custom_padding_phone=\"1%||0px|\" custom_padding_last_edited=\"on|phone\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\" module_id=\"Portfolio–Subhead\"]<p><span style=\"font-family: quicksandreg;\">A BANK WITH NO TELLERS, NO PAPER AND NO HASSLES</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Millennials prefer to bank by app and not to visit brick and mortar branches. To keep their bank retail branch network relevant to customers, my team helped Citibank reimagine the bank branch as a digital experience. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231323761\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-01.jpg\" play_icon_color=\"#eceff1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"1%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">MIRRORING THE EXPERIENCING ON TABLETS FOR BANKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nOur interactive Sales Wall allows customers to explore Cibibank products and services. By mirroring the experience on tablets, bankers take the conversation from the wall to their desks in order to close sales.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%|||\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nNew Yorkers are famously busy, and stopping them on the street is nearly impossible. To get their attention and invite them to explore Citibank\'s new bank branches, we challenged them to a virtual race through the streets of Manhattan on a Citibike.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231324604\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-02.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_4-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_4','','inherit','closed','closed','','27433-revision-v1','','','2017-08-28 10:33:55','2017-08-28 14:33:55','',27433,'http://copyvet.globat.com/wordpress/27433-revision-v1/',0,'revision','',0),(27499,1,'2017-08-28 10:43:17','2017-08-28 14:43:17','','1_5-01','','inherit','open','closed','','1_5-01','','','2017-08-28 10:43:17','2017-08-28 14:43:17','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_5-01.jpg',0,'attachment','image/jpeg',0),(27500,1,'2017-08-28 10:52:39','2017-08-28 14:52:39','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Cognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Today, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 10:52:39','2017-08-28 14:52:39','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27502,1,'2017-08-28 10:54:43','2017-08-28 14:54:43','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Cognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]<p>Today, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 10:54:43','2017-08-28 14:54:43','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27504,1,'2017-08-28 10:55:44','2017-08-28 14:55:44','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"525px\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nCognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/231385354\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nToday, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 10:55:44','2017-08-28 14:55:44','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27506,1,'2017-08-28 10:57:59','2017-08-28 14:57:59','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"525px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"3%||1%|\"][et_pb_row _builder_version=\"3.0.70\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nCognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"3%||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nToday, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 10:57:59','2017-08-28 14:57:59','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27508,1,'2017-08-28 11:00:36','2017-08-28 15:00:36','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"525px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE COGNIZANT BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"3%||1%|\"][et_pb_row _builder_version=\"3.0.70\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"0px||0px|\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nCognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\" custom_padding=\"3%||1%|\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nToday, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 11:00:36','2017-08-28 15:00:36','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27510,1,'2017-08-28 11:02:24','2017-08-28 15:02:24','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"525px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"32px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE COGNIZANT BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row custom_padding=\"0px||0px|\" _builder_version=\"3.0.70\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nCognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nToday, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 11:02:24','2017-08-28 15:02:24','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27512,1,'2017-08-28 11:03:29','2017-08-28 15:03:29','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"525px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"28px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE COGNIZANT BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row custom_padding=\"0px||0px|\" _builder_version=\"3.0.70\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nCognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nToday, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 11:03:29','2017-08-28 15:03:29','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27513,1,'2017-08-28 11:04:19','2017-08-28 15:04:19','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"525px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"30px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">THE BUSINESS OF TECHNOLOGY</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE COGNIZANT BRAND CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.70\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row custom_padding=\"0px||0px|\" _builder_version=\"3.0.70\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">A BUSINESS STRATEGY WITHOUT TECHNOLOGY ISN\'T A STRATEGY AT ALL</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nCognizant is known one of the world\'s largest IT consulting companies. But, what people don\'t know is that in an age where digital technology governs a business\'s success, they\'re also a business consulting organization. Our campaign told this new story to the world.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_video src=\"https://vimeo.com/231385354\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-01.jpg\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.70\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" custom_padding=\"3%||1%|\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENGINEERING BUSINESS CONVERGENCE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nToday, televisions are movie theaters, cars are entertainment centers and refridgerators are shopping carts. Industries are converging—offering services that they never imagined would be part of their wheelhouse. Cognizant helps companies engineer this business convergence.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-02.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-03.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-04.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-05.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_5-06.jpg\" animation=\"off\" _builder_version=\"3.0.70\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_5','','inherit','closed','closed','','27476-revision-v1','','','2017-08-28 11:04:19','2017-08-28 15:04:19','',27476,'http://copyvet.globat.com/wordpress/27476-revision-v1/',0,'revision','',0),(27515,1,'2017-08-28 12:27:37','2017-08-28 16:27:37','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.28)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">OLD MAN BERGER</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Old man Berger, That old man Berger<br />\nHe must know something, Yes, he definitely knows something<br />\nHe just keeps rolling, he keeps on rolling along.<br />\nHe’s often on MSNBC, Yes, he’s often on TV pontificating<br />\nYes, he’s advocating, On large cap stock picking, Yes, he’s an expert picker And he just keeps rolling, He keeps on rolling along.<br />\nHe needed to shout, Yes he needed to cry<br />\nAt financial advisers, Consultants who advise rich folk<br />\nMake them take notice of his little ol’ mutual fund<br />\nWith great returns, That keep on rolling along.</p>\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BERGER FUNDS FINANCIAL ADVISOR CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.71\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">ENSURING A SMALL MUTUAL FUND STAYS TOP OF MIND </span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]<p>In a universe of thousands of mutual funds, Colorado-based Berger Funds had to struggle to get noticed. Their founder, Bill Berger, was known as an expert stock picker, and on that reputation built a national profile. To get the attenion of Financial Advisors—consultants who manage wealthy clients\' investments—we spoke with confidence and attitude about the fund\'s success.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-03.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','publish','closed','closed','','1_3','','','2017-09-11 23:53:12','2017-09-12 03:53:12','',44,'http://copyvet.globat.com/wordpress/?page_id=27515',0,'page','',0),(27516,1,'2017-08-28 12:27:37','2017-08-28 16:27:37','','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:27:37','2017-08-28 16:27:37','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27517,1,'2017-08-28 12:28:29','2017-08-28 16:28:29','','BERGER FUNDS','','publish','closed','closed','','berger-funds','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',44,'http://copyvet.globat.com/wordpress/?p=27517',5,'nav_menu_item','',0),(27519,1,'2017-08-28 12:32:09','2017-08-28 16:32:09','[et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:32:09','2017-08-28 16:32:09','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27520,1,'2017-08-28 12:33:24','2017-08-28 16:33:24','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.71\" background_color=\"#1f497d\" template_type=\"section\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\n\n<p><span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span></p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\n\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Vertical Print Template','','publish','closed','closed','','portfolio-vertical-print-template','','','2017-08-28 12:33:24','2017-08-28 16:33:24','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-vertical-print-template/',0,'et_pb_layout','',0),(27521,1,'2017-08-28 12:33:33','2017-08-28 16:33:33','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.70\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/NYPL.Background.black_.MIDTONE.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" border_style=\"solid\" saved_tabs=\"all\" global_module=\"27416\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Just For Kids</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" module_id=\"Portfolio–Subhead\"][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.69\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27417\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING KIDS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" global_module=\"27423\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.71\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-28 12:33:33','2017-08-28 16:33:33','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27522,1,'2017-08-28 12:34:47','2017-08-28 16:34:47','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\" _builder_version=\"3.0.71\" background_color=\"#1f497d\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:34:47','2017-08-28 16:34:47','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27524,1,'2017-08-28 12:37:14','2017-08-28 16:37:14','','1_3-01','','inherit','open','closed','','1_3-01','','','2017-08-28 12:37:14','2017-08-28 16:37:14','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_3-01.jpg',0,'attachment','image/jpeg',0),(27525,1,'2017-08-28 12:37:16','2017-08-28 16:37:16','','1_3-02','','inherit','open','closed','','1_3-02','','','2017-08-28 12:37:16','2017-08-28 16:37:16','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_3-02.jpg',0,'attachment','image/jpeg',0),(27526,1,'2017-08-28 12:37:17','2017-08-28 16:37:17','','1_3-03','','inherit','open','closed','','1_3-03','','','2017-08-28 12:37:17','2017-08-28 16:37:17','',0,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_3-03.jpg',0,'attachment','image/jpeg',0),(27527,1,'2017-08-28 12:38:12','2017-08-28 16:38:12','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:38:12','2017-08-28 16:38:12','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27529,1,'2017-08-28 12:38:29','2017-08-28 16:38:29','[et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-03.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:38:29','2017-08-28 16:38:29','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27531,1,'2017-08-28 12:39:41','2017-08-28 16:39:41','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\" template_type=\"section\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\n\n<p><span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\n\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Header Template','','publish','closed','closed','','portfolio-header-template','','','2017-08-28 12:39:41','2017-08-28 16:39:41','',0,'http://copyvet.globat.com/wordpress/et_pb_layout/portfolio-header-template/',0,'et_pb_layout','',0),(27532,1,'2017-08-28 12:39:47','2017-08-28 16:39:47','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Page 1','','inherit','closed','closed','','52-revision-v1','','','2017-08-28 12:39:47','2017-08-28 16:39:47','',52,'http://copyvet.globat.com/wordpress/52-revision-v1/',0,'revision','',0),(27533,1,'2017-08-28 12:40:20','2017-08-28 16:40:20','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-03.jpg\" animation=\"off\" _builder_version=\"3.0.71\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:40:20','2017-08-28 16:40:20','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27535,1,'2017-08-28 12:48:29','2017-08-28 16:48:29','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]<p><span style=\"font-family: quicksandlight;\">OLD MAN BERGER</span></p>[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Old man Berger, That old man Berger <br />He must know something, Yes, he definitely knows something <br />He just keeps rolling, he keeps on rolling along. <br />He’s often on MSNBC, Yes, he’s often on TV pontificating <br />Yes, he’s advocating, On large cap stock picking, Yes, he’s an expert picker And he just keeps rolling, He keeps on rolling along. <br />He needed to shout, Yes he needed to cry <br />At financial advisers, Consultants who advise rich folk <br />Make them take notice of his little ol’ mutual fund <br />With great returns, That keep on rolling along.</p>[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BERGER FUNDS FINANCIAL ADVISOR CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.71\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-03.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:48:29','2017-08-28 16:48:29','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27538,1,'2017-08-28 12:54:11','2017-08-28 16:54:11','','1_3','','inherit','open','closed','','1_3-2','','','2017-08-28 12:54:11','2017-08-28 16:54:11','',27515,'http://dev.jeremyfeldman.com/wordpress/wp-content/uploads/2017/08/1_3.jpg',0,'attachment','image/jpeg',0),(27539,1,'2017-08-28 12:54:26','2017-08-28 16:54:26','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">OLD MAN BERGER</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Old man Berger, That old man Berger\r\nHe must know something, Yes, he definitely knows something\r\nHe just keeps rolling, he keeps on rolling along.\r\nHe’s often on MSNBC, Yes, he’s often on TV pontificating\r\nYes, he’s advocating, On large cap stock picking, Yes, he’s an expert picker And he just keeps rolling, He keeps on rolling along.\r\nHe needed to shout, Yes he needed to cry\r\nAt financial advisers, Consultants who advise rich folk\r\nMake them take notice of his little ol’ mutual fund\r\nWith great returns, That keep on rolling along.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BERGER FUNDS FINANCIAL ADVISOR CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.71\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-03.jpg\" animation=\"off\" _builder_version=\"3.0.71\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:54:26','2017-08-28 16:54:26','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27541,1,'2017-08-28 12:57:29','2017-08-28 16:57:29','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.28)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">OLD MAN BERGER</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Old man Berger, That old man Berger<br />\nHe must know something, Yes, he definitely knows something<br />\nHe just keeps rolling, he keeps on rolling along.<br />\nHe’s often on MSNBC, Yes, he’s often on TV pontificating<br />\nYes, he’s advocating, On large cap stock picking, Yes, he’s an expert picker And he just keeps rolling, He keeps on rolling along.<br />\nHe needed to shout, Yes he needed to cry<br />\nAt financial advisers, Consultants who advise rich folk<br />\nMake them take notice of his little ol’ mutual fund<br />\nWith great returns, That keep on rolling along.</p>\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BERGER FUNDS FINANCIAL ADVISOR CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.71\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-03.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 12:57:29','2017-08-28 16:57:29','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27543,1,'2017-08-28 13:04:34','2017-08-28 17:04:34','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.28)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">OLD MAN BERGER</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]<p style=\"text-align: center;\">Old man Berger, That old man Berger<br />\nHe must know something, Yes, he definitely knows something<br />\nHe just keeps rolling, he keeps on rolling along.<br />\nHe’s often on MSNBC, Yes, he’s often on TV pontificating<br />\nYes, he’s advocating, On large cap stock picking, Yes, he’s an expert picker And he just keeps rolling, He keeps on rolling along.<br />\nHe needed to shout, Yes he needed to cry<br />\nAt financial advisers, Consultants who advise rich folk<br />\nMake them take notice of his little ol’ mutual fund<br />\nWith great returns, That keep on rolling along.</p>\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BERGER FUNDS FINANCIAL ADVISOR CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.71\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]<p><span face=\"quicksandreg\" style=\"font-family: quicksandreg;\">ENSURING A SMALL MUTUAL FUND STAYS TOP OF MIND </span></p>[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]<p>In a universe of thousands of mutual funds, Colorado-based Berger Funds had to struggle to get noticed. Their founder, Bill Berger, was known as an expert stock picker, and on that reputation built a national profile. To get the attenion of Financial Advisors—consultants who manage wealthy clients\' investments—we spoke with confidence and attitude about the fund\'s success.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-02.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-01.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_3-03.jpg\" animation=\"off\" _builder_version=\"3.0.71\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_3','','inherit','closed','closed','','27515-revision-v1','','','2017-08-28 13:04:34','2017-08-28 17:04:34','',27515,'http://copyvet.globat.com/wordpress/27515-revision-v1/',0,'revision','',0),(27545,1,'2017-08-28 13:05:32','2017-08-28 17:05:32','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">Speed Demons</span>\r\n\r\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.69\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|phone\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#212121\" text_line_height=\"1.5em\" text_line_height_phone=\"1.5em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]\r\n\r\nConvincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_top=\"0px\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\"][/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','1_2','','inherit','closed','closed','','27293-revision-v1','','','2017-08-28 13:05:32','2017-08-28 17:05:32','',27293,'http://copyvet.globat.com/wordpress/27293-revision-v1/',0,'revision','',0),(27547,1,'2017-08-28 13:06:19','2017-08-28 17:06:19','[et_pb_section fb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.71\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/NYPL.Background.black_.MIDTONE.jpg\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" padding_phone=\"||12%|\" padding_last_edited=\"on|desktop\" padding_bottom=\"0px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" admin_label=\"Portfolio Headline\" _builder_version=\"3.0.70\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\" global_module=\"27416\" saved_tabs=\"all\"]<p><span style=\"font-family: quicksandlight;\">Just For Kids</span></p>\n[/et_pb_text][et_pb_text background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" admin_label=\"Portfolio Copy\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE NEW YORK PUBLIC LIBRARY CAMPAIGN\" button_alignment=\"center\" admin_label=\"Portfolio Button\" _builder_version=\"3.0.69\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|0px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.69\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"20px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.69\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_font_size_tablet=\"20px\" text_font_size_phone=\"20px\" text_text_color=\"#ff9335\" text_letter_spacing_tablet=\"0px\" text_letter_spacing_phone=\"0px\" text_line_height_tablet=\"1.7em\" text_line_height_phone=\"1.7em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_tablet=\"24px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_letter_spacing_tablet=\"0px\" header_letter_spacing_phone=\"0px\" header_line_height=\"0\" header_line_height_tablet=\"0\" header_line_height_phone=\"0\" custom_margin=\"0px||0px|\" custom_margin_tablet=\"0px||0px|\" custom_margin_phone=\"0px||0px|\" custom_padding=\"11px||5%|\" custom_padding_tablet=\"11px||5%|\" custom_padding_phone=\"11px||5%|\" global_module=\"27417\" saved_tabs=\"all\" inline_fonts=\"Roboto\"]<p><span style=\"font-family: quicksandreg;\">CAPTURING THE IMAGINATIONS OF BUSY NEW YORKERS</span></p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" global_module=\"27423\" saved_tabs=\"all\"]<p>Most Millennials don\'t see much value in bank branches. Too keep the branch network relevant, my team helped Citibank reimagine retail banking as a rich and engaging digital experience.</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.0.47\" padding_bottom=\"10px\" padding_top=\"12px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-01.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.71\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">SUMMER READING PRINT CAMPAIGN TARGETING PARENTS</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider _builder_version=\"3.0.65\"][/et_pb_divider][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-02.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_14-04.jpg\" animation=\"off\" _builder_version=\"3.0.69\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','1_14','','inherit','closed','closed','','27348-revision-v1','','','2017-08-28 13:06:19','2017-08-28 17:06:19','',27348,'http://copyvet.globat.com/wordpress/27348-revision-v1/',0,'revision','',0),(27549,1,'2017-08-29 08:32:46','2017-08-29 12:32:46','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_19','','trash','closed','closed','','1_19__trashed','','','2017-08-29 08:39:53','2017-08-29 12:39:53','',44,'http://copyvet.globat.com/wordpress/?page_id=27549',0,'page','',0),(27550,1,'2017-08-29 08:32:46','2017-08-29 12:32:46','','1_19','','inherit','closed','closed','','27549-revision-v1','','','2017-08-29 08:32:46','2017-08-29 12:32:46','',27549,'http://copyvet.globat.com/wordpress/27549-revision-v1/',0,'revision','',0),(27551,1,'2017-08-29 08:33:49','2017-08-29 12:33:49','','WALL STREET ENGLISH','','publish','closed','closed','','wall-street-english','','','2017-08-29 08:33:49','2017-08-29 12:33:49','',44,'http://copyvet.globat.com/wordpress/?p=27551',9,'nav_menu_item','',0),(27552,1,'2017-08-29 08:35:24','2017-08-29 12:35:24','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"550px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"74px\" text_font_size_phone=\"37px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px||3%|\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\n\n<p><span style=\"font-family: quicksandlight;\">Speed Demons</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||3%|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\n\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE BELL SOUTH DIGITAL AND CRM CAMPAIGNS\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"63.7188px|0px|0px|0px\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"||3%|\" custom_padding_phone=\"0px|||\" custom_margin=\"0px|||\" padding_top_1=\"0px\" padding_top_2=\"0px\" padding_top_3=\"0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" header_line_height_last_edited=\"on|phone\" custom_margin=\"0px|||\" custom_padding=\"11px|||\" inline_fonts=\"Roboto\"]\n\n<p><span style=\"font-family: quicksandreg;\">BELL SOUTH CONSUMER DSL</span></p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#212121\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" custom_margin=\"2%|||\" custom_margin_phone=\"4%||0px|\" custom_margin_last_edited=\"on|phone\" custom_padding=\"||0px|\"]\n\n<p>Convincing people to get faster internat service seems quaint now, but when this campaign started 75% of the population was still using dial up. How do you get them switch? Simple, engaging stories did the trick.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#eceff1\" custom_padding=\"1%|0px|4%|0px\" custom_padding_phone=\"||10%|\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058275\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-01_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058291\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-04_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058277\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2017-08-09-at-9.07.58-PM-1.png\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058289\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-05_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_video src=\"https://vimeo.com/229058283\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_02-03_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][et_pb_video src=\"https://vimeo.com/229058296\" image_src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-06_Frame.jpg\" play_icon_color=\"#1f497d\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1F497D\" custom_padding=\"3%|0px|63.7188px|0px\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.0.65\"][et_pb_row custom_padding=\"0px|0px|10px|0px\" padding_top_1=\"20px\" padding_bottom_1=\"10px\" padding_top_2=\"12px\" padding_bottom_2=\"10px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.65\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_divider module_id=\"Portfolio–Subhead\" _builder_version=\"3.0.65\" /][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.65\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height=\"0px\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_text_color=\"#212121\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\"]\n\n<p><span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN</span></p>\n\n[/et_pb_text][et_pb_text _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#ECEFF1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\"]\n\n<p>Sure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-07.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-08.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/1_2-09.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_19','','inherit','closed','closed','','27549-autosave-v1','','','2017-08-29 08:35:24','2017-08-29 12:35:24','',27549,'http://copyvet.globat.com/wordpress/27549-autosave-v1/',0,'revision','',0),(27553,1,'2017-08-29 08:36:39','2017-08-29 12:36:39','[et_pb_section bb_built=\"1\" background_color=\"rgba(0,0,0,0.14)\" custom_padding=\"18%|0px|19%|0px\" custom_padding_phone=\"20px|0px|20px|0px\" custom_padding_last_edited=\"on|desktop\" _builder_version=\"3.0.65\" background_image=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Bs_Background_8_8.gif\" background_blend=\"multiply\"][et_pb_row custom_width_px=\"2600px\" custom_padding=\"0px|0px|0px|0px\" padding_bottom_1=\"0px\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" padding_1_phone=\"||12%|\" padding_1_last_edited=\"on|desktop\" _builder_version=\"3.0.65\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Portfolio Headline\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Roboto||||\" text_font_size=\"64px\" text_font_size_phone=\"35px\" text_font_size_last_edited=\"on|phone\" text_text_color=\"#eceff1\" text_letter_spacing_last_edited=\"on|phone\" text_line_height=\"1em\" text_line_height_phone=\"1em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0px|||\" custom_padding_phone=\"10%|||\" custom_padding_last_edited=\"on|desktop\"]\r\n\r\n<span style=\"font-family: quicksandlight;\">THE COLOR OF INNOVATION</span>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Portfolio Copy\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"500px\" _builder_version=\"3.0.65\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_font_size_phone=\"12px\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#eceff1\" text_line_height_phone=\"1.4em\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto||||\" header_font_size=\"33px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"||0px|\" custom_padding_phone=\"0px||6%|\" custom_padding_last_edited=\"on|phone\"]\r\n<p style=\"text-align: center;\">Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasfsl lkasdfj lakjf lkjasdf lkjaf lkjafd lajfdlljkasflkjlkjaf lkjfa ljf lkjaf lkafs. Once upon a time there was a great lkasdfj lakjf.</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Portfolio Button\" button_url=\"#Portfolio–Subhead\" button_text=\"SEE THE SUN CHEMICAL BRAND CAMPAIGN\" button_alignment=\"center\" _builder_version=\"3.0.65\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#8bc34a\" button_bg_color=\"#1f497d\" button_border_width=\"0px\" button_border_radius=\"4px\" button_font=\"Open Sans|on|||\" button_use_icon=\"off\" button_text_color_hover=\"#bef67a\" button_bg_color_hover=\"#5374ad\" button_border_radius_hover=\"4px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" background_color=\"#1f497d\" _builder_version=\"3.0.70\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Subhead\" _builder_version=\"3.0.70\" text_font=\"Roboto|on|||\" text_font_size=\"20px\" text_text_color=\"#ff9335\" text_line_height_last_edited=\"on|desktop\" header_font=\"Roboto|on|||\" header_font_size=\"24px\" header_font_size_last_edited=\"on|tablet\" header_text_color=\"#212121\" header_line_height=\"0\" custom_margin=\"0px||0px|\" custom_padding=\"11px||5%|\" inline_fonts=\"Roboto\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\n<span style=\"font-family: quicksandreg;\">ENTERPRISE CRM CAMPAIGN STRATEGY AND PRACTICE</span>\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"3.0.70\" text_font=\"Open Sans||||\" text_font_size=\"14px\" text_text_color=\"#eceff1\" text_line_height=\"1.5em\" header_font=\"Source Sans Pro|on|||\" header_font_size=\"24px\" saved_tabs=\"all\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nSure, BellSouth was the region\'s largest telecom provider. But when it came to  enterprise-level solutions, many organizations instinctively turned to competitors like Avaya and Cisco. Our quarterly CRM campaign educated IT managers about our client\'s offering by cutting through the clutter with unexpected gifts wrapped around strategic messages.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider height=\"15\" _builder_version=\"3.0.70\" /][et_pb_video src=\"https://vimeo.com/228445312\" play_icon_color=\"#ECEFF1\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Sun_01.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_3.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/chewFeld_adcepts_Page_2.jpg\" animation=\"off\" _builder_version=\"3.0.65\" /][et_pb_image src=\"http://dev.jeremyfeldman.com/wordpress/brand-stories/wordpress/wp-content/uploads/2017/08/Screen-Shot-2016-10-14-at-6.11.36-PM.png\" animation=\"off\" _builder_version=\"3.0.65\" /][/et_pb_column][/et_pb_row][/et_pb_section]','1_19','','inherit','closed','closed','','27549-revision-v1','','','2017-08-29 08:36:39','2017-08-29 12:36:39','',27549,'http://copyvet.globat.com/wordpress/27549-revision-v1/',0,'revision','',0),(27554,0,'2017-08-29 16:58:30','2017-08-29 20:58:30','','Auto Draft','','inherit','closed','closed','','27385-revision-v1','','','2017-08-29 16:58:30','2017-08-29 20:58:30','',27385,'http://copyvet.globat.com/wordpress/27385-revision-v1/',0,'revision','',0),(27556,8,'2017-08-30 05:45:12','2017-08-30 09:45:12','','Auto Draft','','trash','open','open','','__trashed-5','','','2017-09-03 11:05:20','2017-09-03 15:05:20','',0,'http://copyvet.globat.com/wordpress/?p=27556',0,'post','',0),(27558,8,'2017-08-30 05:47:14','2017-08-30 09:47:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider parallax=\"on\" admin_label=\"Fullwidth Slider\" _builder_version=\"3.0.47\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" video_bg_width=\"1920\" video_bg_height=\"638\" _builder_version=\"3.0.47\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" button_text=\"A Closer Look\" background_color=\"#444444\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" _builder_version=\"3.0.47\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#27c9b8\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" admin_label=\"Call To Action\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Building a website has never been so fun.</h1>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#27323a\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" animation=\"right\" admin_label=\"Image\" _builder_version=\"3.0.47\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#22262e\" _builder_version=\"3.0.47\" parallax=\"on\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_portfolio background_layout=\"dark\" auto=\"on\" admin_label=\"Fullwidth Portfolio\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_fullwidth_portfolio][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" _builder_version=\"3.0.47\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"https://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" _builder_version=\"3.0.47\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" _builder_version=\"3.0.47\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Core Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" url=\"https://elegantthemes.com/preview/Divi2/features/#predefined\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" url=\"https://elegantthemes.com/preview/Divi2/features/#layouts\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" url=\"https://elegantthemes.com/preview/Divi2/features/#mobile\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider parallax=\"on\" admin_label=\"Fullwidth Slider\" _builder_version=\"3.0.47\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" _builder_version=\"3.0.47\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#283139\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"R\" icon_color=\"#ec6d5f\" icon_placement=\"left\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<span style=\"color: #bbbbbb\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"R\" icon_color=\"#1fa0e3\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<span style=\"color: #bbbbbb\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"R\" icon_color=\"#47bfa4\" icon_placement=\"left\" background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<span style=\"color: #bbbbbb\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" admin_label=\"Image\" _builder_version=\"3.0.47\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" admin_label=\"Image\" _builder_version=\"3.0.47\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ec6d5f\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta button_url=\"#\" button_text=\"Join Now\" use_background_color=\"off\" admin_label=\"Call To Action\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Look No Further. Get Started Today</h1>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Test','','trash','closed','closed','','test__trashed-2','','','2017-09-03 11:05:20','2017-09-03 15:05:20','',0,'http://copyvet.globat.com/wordpress/?page_id=27558',0,'page','',0),(27563,0,'2017-09-03 11:05:20','2017-09-03 15:05:20','','Auto Draft','','inherit','closed','closed','','27556-revision-v1','','','2017-09-03 11:05:20','2017-09-03 15:05:20','',27556,'http://copyvet.globat.com/wordpress/27556-revision-v1/',0,'revision','',0),(27564,0,'2017-09-03 11:05:20','2017-09-03 15:05:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider parallax=\"on\" admin_label=\"Fullwidth Slider\" _builder_version=\"3.0.47\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" video_bg_width=\"1920\" video_bg_height=\"638\" _builder_version=\"3.0.47\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" button_text=\"A Closer Look\" background_color=\"#444444\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" _builder_version=\"3.0.47\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c4dd5\" icon_placement=\"left\" animation=\"off\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#27c9b8\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" admin_label=\"Call To Action\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Building a website has never been so fun.</h1>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#27323a\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" animation=\"right\" admin_label=\"Image\" _builder_version=\"3.0.47\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#22262e\" _builder_version=\"3.0.47\" parallax=\"on\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_number_counter title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" admin_label=\"Number Counter\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_portfolio background_layout=\"dark\" auto=\"on\" admin_label=\"Fullwidth Portfolio\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][/et_pb_fullwidth_portfolio][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" _builder_version=\"3.0.47\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"https://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" _builder_version=\"3.0.47\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" _builder_version=\"3.0.47\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_orientation=\"center\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Core Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" url=\"https://elegantthemes.com/preview/Divi2/features/#predefined\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" url=\"https://elegantthemes.com/preview/Divi2/features/#layouts\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" url=\"https://elegantthemes.com/preview/Divi2/features/#mobile\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" icon_color=\"#2caaca\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.0.47\"][et_pb_fullwidth_slider parallax=\"on\" admin_label=\"Fullwidth Slider\" _builder_version=\"3.0.47\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" _builder_version=\"3.0.47\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#283139\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"R\" icon_color=\"#ec6d5f\" icon_placement=\"left\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<span style=\"color: #bbbbbb\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"R\" icon_color=\"#1fa0e3\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<span style=\"color: #bbbbbb\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb title=\"Lorem Ipsum Dolor\" use_icon=\"on\" font_icon=\"R\" icon_color=\"#47bfa4\" icon_placement=\"left\" background_layout=\"dark\" text_orientation=\"center\" admin_label=\"Blurb\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<span style=\"color: #bbbbbb\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" admin_label=\"Image\" _builder_version=\"3.0.47\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" admin_label=\"Image\" _builder_version=\"3.0.47\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" background_color=\"#ec6d5f\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta button_url=\"#\" button_text=\"Join Now\" use_background_color=\"off\" admin_label=\"Call To Action\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<h1>Look No Further. Get Started Today</h1>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Test','','inherit','closed','closed','','27558-revision-v1','','','2017-09-03 11:05:20','2017-09-03 15:05:20','',27558,'http://copyvet.globat.com/wordpress/27558-revision-v1/',0,'revision','',0),(27566,1,'2017-09-11 23:12:27','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-09-11 23:12:27','0000-00-00 00:00:00','',0,'http://dev.jeremyfeldman.com/wordpress/?p=27566',0,'post','',0);
/*!40000 ALTER TABLE `wp_xyud_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_term_relationships`
--

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

--
-- Dumping data for table `wp_xyud_term_relationships`
--

LOCK TABLES `wp_xyud_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_xyud_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_xyud_term_relationships` VALUES (44,9,0),(52,9,0),(54,2,0),(55,2,0),(56,2,0),(57,2,0),(58,2,0),(59,2,0),(25042,3,0),(25042,4,0),(25042,5,0),(25569,4,0),(25569,5,0),(25569,6,0),(25579,4,0),(25579,5,0),(25579,6,0),(25580,4,0),(25580,5,0),(25580,6,0),(25581,4,0),(25581,5,0),(25581,6,0),(25582,3,0),(25582,4,0),(25582,5,0),(25729,3,0),(25729,4,0),(25729,5,0),(26625,3,0),(26625,4,0),(26625,5,0),(26971,4,0),(26971,5,0),(26971,7,0),(26971,8,0),(27053,4,0),(27053,5,0),(27053,6,0),(27059,3,0),(27059,4,0),(27059,5,0),(27093,3,0),(27093,4,0),(27093,5,0),(27109,3,0),(27109,4,0),(27109,5,0),(27208,3,0),(27208,4,0),(27208,5,0),(27293,9,0),(27295,2,0),(27296,3,0),(27296,4,0),(27296,5,0),(27312,1,0),(27348,9,0),(27350,2,0),(27374,1,0),(27380,1,0),(27385,1,0),(27416,5,0),(27416,8,0),(27416,10,0),(27416,11,0),(27417,5,0),(27417,8,0),(27417,11,0),(27417,12,0),(27423,5,0),(27423,8,0),(27423,11,0),(27423,12,0),(27433,9,0),(27435,2,0),(27436,3,0),(27436,4,0),(27436,5,0),(27457,4,0),(27457,5,0),(27457,8,0),(27457,10,0),(27460,4,0),(27460,5,0),(27460,8,0),(27460,10,0),(27476,9,0),(27478,2,0),(27515,9,0),(27517,2,0),(27520,4,0),(27520,5,0),(27520,6,0),(27520,10,0),(27531,4,0),(27531,5,0),(27531,6,0),(27531,10,0),(27549,9,0),(27551,2,0),(27556,1,0);
/*!40000 ALTER TABLE `wp_xyud_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_term_taxonomy`
--

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

--
-- Dumping data for table `wp_xyud_term_taxonomy`
--

LOCK TABLES `wp_xyud_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_xyud_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_xyud_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,12),(3,3,'layout_type','',0,10),(4,4,'scope','',0,20),(5,5,'module_width','',0,23),(6,6,'layout_type','',0,7),(7,7,'layout_category','',0,1),(8,8,'layout_type','',0,6),(9,9,'category','',0,7),(10,10,'layout_category','',0,5),(11,11,'scope','',0,3),(12,12,'layout_category','',0,2);
/*!40000 ALTER TABLE `wp_xyud_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_termmeta`
--

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

--
-- Dumping data for table `wp_xyud_termmeta`
--

LOCK TABLES `wp_xyud_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_xyud_termmeta` DISABLE KEYS */;
INSERT INTO `wp_xyud_termmeta` VALUES (2,9,'visibility','password'),(3,9,'password','greatyarn7710');
/*!40000 ALTER TABLE `wp_xyud_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_terms`
--

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

--
-- Dumping data for table `wp_xyud_terms`
--

LOCK TABLES `wp_xyud_terms` WRITE;
/*!40000 ALTER TABLE `wp_xyud_terms` DISABLE KEYS */;
INSERT INTO `wp_xyud_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'main_menu','main_menu',0),(3,'layout','layout',0),(4,'not_global','not_global',0),(5,'regular','regular',0),(6,'section','section',0),(7,'Button Styles','button-styles',0),(8,'module','module',0),(9,'Portfolio','portfolio',0),(10,'Portfolio Templates','portfolio-templates',0),(11,'global','global',0),(12,'Portfolio Template','portfolio-template',0);
/*!40000 ALTER TABLE `wp_xyud_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_usermeta`
--

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

--
-- Dumping data for table `wp_xyud_usermeta`
--

LOCK TABLES `wp_xyud_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_xyud_usermeta` DISABLE KEYS */;
INSERT INTO `wp_xyud_usermeta` VALUES (1,1,'nickname','copyvet10'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'locale',''),(11,1,'wp_xyud_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wp_xyud_user_level','10'),(13,1,'dismissed_wp_pointers','omapi_please_connect_notice'),(14,1,'show_welcome_panel','0'),(16,1,'wp_xyud_dashboard_quick_press_last_post_id','27566'),(17,1,'session_tokens','a:3:{s:64:\"b712dc0c4adf692ec4441f8d23bfa3b4850b9d3fa83e269f48892c5d42823d8f\";a:4:{s:10:\"expiration\";i:1505319949;s:2:\"ip\";s:13:\"149.39.250.11\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36\";s:5:\"login\";i:1505147149;}s:64:\"ae249d2c14c8645737575e5fd412909ac21d147156922490752acaf930dfdf93\";a:4:{s:10:\"expiration\";i:1505352306;s:2:\"ip\";s:13:\"149.39.250.11\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36\";s:5:\"login\";i:1505179506;}s:64:\"5e4a8c89343f53e72a7ff9235b874130310d98c7142573bf8ae8f39e30b1423a\";a:4:{s:10:\"expiration\";i:1505358746;s:2:\"ip\";s:14:\"68.132.224.241\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:54.0) Gecko/20100101 Firefox/54.0\";s:5:\"login\";i:1505185946;}}'),(18,1,'default_password_nag',''),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"68.132.224.0\";}'),(20,1,'closedpostboxes_dashboard','a:6:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:22:\"jetpack_summary_widget\";i:3;s:21:\"dashboard_quick_press\";i:4;s:17:\"dashboard_primary\";i:5;s:23:\"optin_monster_db_widget\";}'),(21,1,'metaboxhidden_dashboard','a:0:{}'),(22,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:61:\"dashboard_right_now,dashboard_activity,jetpack_summary_widget\";s:4:\"side\";s:21:\"dashboard_quick_press\";s:7:\"column3\";s:17:\"dashboard_primary\";s:7:\"column4\";s:23:\"optin_monster_db_widget\";}'),(23,1,'jetpack_tracks_wpcom_id','122531809'),(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:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(26,1,'nav_menu_recently_edited','2'),(27,1,'wp_xyud_user-settings','mfold=o&editor=tinymce&libraryContent=browse&hidetb=1'),(28,1,'wp_xyud_user-settings-time','1502929032'),(42,1,'wp_xyud_media_library_mode','list');
/*!40000 ALTER TABLE `wp_xyud_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_xyud_users`
--

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

--
-- Dumping data for table `wp_xyud_users`
--

LOCK TABLES `wp_xyud_users` WRITE;
/*!40000 ALTER TABLE `wp_xyud_users` DISABLE KEYS */;
INSERT INTO `wp_xyud_users` VALUES (1,'admin','$P$BL5U1/0RgBLiPZgPn8yEQD3nI6XgQ60','copyvet10','feldman_jeremy@hotmail.com','','2017-06-02 00:33:35','',0,'copyvet10');
/*!40000 ALTER TABLE `wp_xyud_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2017-09-13 16:34:49
